diff --git a/TangemWalletCore.podspec b/TangemWalletCore.podspec index 41b1b02..2c3966c 100644 --- a/TangemWalletCore.podspec +++ b/TangemWalletCore.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'TangemWalletCore' - s.version = '3.2.1-tangem2' + s.version = '3.2.4-tangem1' s.summary = 'Use TW xcframework for Tangem integration' # This description is used to generate tags and improve search results. diff --git a/WalletCore.xcframework/Info.plist b/WalletCore.xcframework/Info.plist index 9d02d0b..972e19c 100644 --- a/WalletCore.xcframework/Info.plist +++ b/WalletCore.xcframework/Info.plist @@ -6,30 +6,30 @@ LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath WalletCore.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath WalletCore.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCardano.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCardano.h index cef845b..0892d61 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCardano.h +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCardano.h @@ -42,4 +42,10 @@ TWString *_Nullable TWCardanoOutputMinAdaAmount(TWString *_Nonnull toAddress, TW TW_EXPORT_STATIC_METHOD TWString *_Nonnull TWCardanoGetStakingAddress(TWString *_Nonnull baseAddress) TW_VISIBILITY_DEFAULT; +/// Return the legacy(byron) address. +/// \param publicKey A valid public key with TWPublicKeyTypeED25519Cardano type. +/// \return the legacy(byron) address, as string, or empty string on error. +TW_EXPORT_STATIC_METHOD +TWString *_Nonnull TWCardanoGetByronAddress(struct TWPublicKey *_Nonnull publicKey); + TW_EXTERN_C_END diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCoinType.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCoinType.h index af23f26..c6de3d4 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCoinType.h +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWCoinType.h @@ -166,6 +166,9 @@ enum TWCoinType { TWCoinTypeRootstock = 137, TWCoinTypeThetaFuel = 361, TWCoinTypeConfluxeSpace = 1030, + TWCoinTypeAcala = 787, + TWCoinTypeAcalaEVM = 10000787, + TWCoinTypeOpBNBtestnet = 5611, }; /// Returns the blockchain for a coin type. diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWEthereumChainID.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWEthereumChainID.h index 50bfaef..900ea01 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWEthereumChainID.h +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWEthereumChainID.h @@ -29,6 +29,7 @@ enum TWEthereumChainID { TWEthereumChainIDOkc = 66, TWEthereumChainIDThundertoken = 108, TWEthereumChainIDCfxevm = 1030, + TWEthereumChainIDOpbnb = 5611, TWEthereumChainIDGochain = 60, TWEthereumChainIDMeter = 82, TWEthereumChainIDCelo = 42220, @@ -43,6 +44,7 @@ enum TWEthereumChainID { TWEthereumChainIDKcc = 321, TWEthereumChainIDZksync = 324, TWEthereumChainIDHeco = 128, + TWEthereumChainIDAcalaevm = 787, TWEthereumChainIDMetis = 1088, TWEthereumChainIDPolygonzkevm = 1101, TWEthereumChainIDMoonbeam = 1284, diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWSubstrateAddress.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWSubstrateAddress.h deleted file mode 100644 index 9b059b0..0000000 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWSubstrateAddress.h +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright © 2017-2023 Trust Wallet. -// -// This file is part of Trust. The full Trust copyright notice, including -// terms governing use, modification, and redistribution, is contained in the -// file LICENSE at the root of the source code distribution tree. - -#pragma once - -#include "TWBase.h" -#include "TWData.h" -#include "TWHRP.h" -#include "TWString.h" - -// TODO: Adjust definitions below - -TW_EXTERN_C_BEGIN - -struct TWPublicKey; - -/// Represents a Substrate address. -TW_EXPORT_CLASS -struct TWSubstrateAddress; - -/// Compares two addresses for equality. -TW_EXPORT_STATIC_METHOD -bool TWSubstrateAddressEqual(struct TWSubstrateAddress *_Nonnull lhs, struct TWSubstrateAddress *_Nonnull rhs); - -/// Determines if the string is a valid Substrate address. -TW_EXPORT_STATIC_METHOD -bool TWSubstrateAddressIsValidString(TWString *_Nonnull string, int32_t network); - -/// Creates an address from a string representaion. -TW_EXPORT_STATIC_METHOD -struct TWSubstrateAddress *_Nullable TWSubstrateAddressCreateWithString(TWString *_Nonnull string, int32_t network); - -/// Creates an address from a public key. -TW_EXPORT_STATIC_METHOD -struct TWSubstrateAddress *_Nonnull TWSubstrateAddressCreateWithPublicKey(struct TWPublicKey *_Nonnull publicKey, int32_t network); - -/// Delete address object -TW_EXPORT_METHOD -void TWSubstrateAddressDelete(struct TWSubstrateAddress *_Nonnull address); - -/// Returns the address string representation. -TW_EXPORT_PROPERTY -TWString *_Nonnull TWSubstrateAddressDescription(struct TWSubstrateAddress *_Nonnull address); - -TW_EXTERN_C_END \ No newline at end of file diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWSubstrateSigner.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWSubstrateSigner.h deleted file mode 100644 index cac91c1..0000000 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWSubstrateSigner.h +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright © 2017-2023 Trust Wallet. -// -// This file is part of Trust. The full Trust copyright notice, including -// terms governing use, modification, and redistribution, is contained in the -// file LICENSE at the root of the source code distribution tree. - -#pragma once - -#include "TWBase.h" -#include "TWData.h" -#include "TWSubstrateSigner.h" - -TW_EXTERN_C_BEGIN - -TW_EXPORT_CLASS -struct TWSubstrateSigner; - -/// Builds a message to be signed -TW_EXPORT_STATIC_METHOD -TWData *_Nonnull TWSubstrateSignerMessage(TWData *_Nonnull data); - -/// Builds a transaction to be broadcasted -TW_EXPORT_STATIC_METHOD -TWData *_Nonnull TWSubstrateSignerTransaction(TWData *_Nonnull data, TWData *_Nonnull publicKey, TWData *_Nonnull signature); - -TW_EXTERN_C_END diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWWebAuthn.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWWebAuthn.h index 073fa16..4d988da 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWWebAuthn.h +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/TWWebAuthn.h @@ -20,4 +20,19 @@ struct TWWebAuthn; /// \return Public key. TW_EXPORT_STATIC_METHOD struct TWPublicKey *_Nullable TWWebAuthnGetPublicKey(TWData *_Nonnull attestationObject); + +/// Uses ASN parser to extract r and s values from a webauthn signature +/// +/// \param signature ASN encoded webauthn signature: https://www.w3.org/TR/webauthn-2/#sctn-signature-attestation-types +/// \return Concatenated r and s values. +TW_EXPORT_STATIC_METHOD +TWData *_Nonnull TWWebAuthnGetRSValues(TWData *_Nonnull signature); + +/// Reconstructs the original message that was signed via P256 curve. Can be used for signature validation. +/// +/// \param authenticatorData Authenticator Data: https://www.w3.org/TR/webauthn-2/#authenticator-data +/// \param clientDataJSON clientDataJSON: https://www.w3.org/TR/webauthn-2/#dom-authenticatorresponse-clientdatajson +/// \return original messages. +TW_EXPORT_STATIC_METHOD +TWData *_Nonnull TWWebAuthnReconstructOriginalMessage(TWData* _Nonnull authenticatorData, TWData* _Nonnull clientDataJSON); TW_EXTERN_C_END \ No newline at end of file diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore-Swift.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore-Swift.h index 39bf19f..37a856d 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore-Swift.h +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) #ifndef WALLETCORE_SWIFT_H #define WALLETCORE_SWIFT_H #pragma clang diagnostic push diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore.h b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore.h index cbaab18..72e6b75 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore.h +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Headers/WalletCore.h @@ -76,8 +76,6 @@ FOUNDATION_EXPORT const unsigned char WalletCoreVersionString[]; #include "TWStoredKey.h" #include "TWStoredKeyEncryption.h" #include "TWStoredKeyEncryptionLevel.h" -#include "TWSubstrateAddress.h" -#include "TWSubstrateSigner.h" #include "TWTHORChainSwap.h" #include "TWTezosMessageSigner.h" #include "TWTransactionCompiler.h" diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Info.plist b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Info.plist index afd44c2..8249800 100644 Binary files a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Info.plist and b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Info.plist differ diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.abi.json b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.abi.json index 4c1b4b5..a907bf9 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.abi.json +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.abi.json @@ -22868,8 +22868,8 @@ "children": [ { "kind": "Var", - "name": "factory", - "printedName": "factory", + "name": "entryPoint", + "printedName": "entryPoint", "children": [ { "kind": "TypeNominal", @@ -22879,8 +22879,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -22903,8 +22903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -22927,8 +22927,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -22945,8 +22945,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -22955,8 +22955,8 @@ }, { "kind": "Var", - "name": "diamondCutFacet", - "printedName": "diamondCutFacet", + "name": "factory", + "printedName": "factory", "children": [ { "kind": "TypeNominal", @@ -22966,8 +22966,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -22990,8 +22990,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -23014,8 +23014,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -23032,8 +23032,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -23059,7 +23059,8 @@ "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -23212,264 +23213,6 @@ } ] }, - { - "kind": "Var", - "name": "tokenReceiverFacet", - "printedName": "tokenReceiverFacet", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "diamondLoupeFacet", - "printedName": "diamondLoupeFacet", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "diamondInit", - "printedName": "diamondInit", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, { "kind": "Var", "name": "facetRegistry", @@ -23558,8 +23301,8 @@ }, { "kind": "Var", - "name": "entryPoint", - "printedName": "entryPoint", + "name": "defaultFallback", + "printedName": "defaultFallback", "children": [ { "kind": "TypeNominal", @@ -23569,14 +23312,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -23593,8 +23335,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -23617,8 +23359,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -23635,8 +23377,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -72508,6 +72250,35 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getByronAddress", + "printedName": "getByronAddress(publicKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore7CardanoV15getByronAddress9publicKeySSAA06PublicH0C_tFZ", + "mangledName": "$s10WalletCore7CardanoV15getByronAddress9publicKeySSAA06PublicH0C_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Struct", @@ -77566,6 +77337,117 @@ "mangledName": "$s10WalletCore8CoinTypeO13confluxeSpaceyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "acala", + "printedName": "acala", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO5acalayA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO5acalayA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "acalaEVM", + "printedName": "acalaEVM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO8acalaEVMyA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO8acalaEVMyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opBNBtestnet", + "printedName": "opBNBtestnet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO12opBNBtestnetyA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO12opBNBtestnetyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "rawValue", @@ -130891,6 +130773,43 @@ "mangledName": "$s10WalletCore15EthereumChainIDO6cfxevmyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "opbnb", + "printedName": "opbnb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.EthereumChainID.Type) -> WalletCore.EthereumChainID", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.EthereumChainID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15EthereumChainIDO5opbnbyA2CmF", + "mangledName": "$s10WalletCore15EthereumChainIDO5opbnbyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "gochain", @@ -131409,6 +131328,43 @@ "mangledName": "$s10WalletCore15EthereumChainIDO4hecoyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "acalaevm", + "printedName": "acalaevm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.EthereumChainID.Type) -> WalletCore.EthereumChainID", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.EthereumChainID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15EthereumChainIDO8acalaevmyA2CmF", + "mangledName": "$s10WalletCore15EthereumChainIDO8acalaevmyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "metis", @@ -260756,32 +260712,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "TW_Polkadot_Proto_Balance", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "TW_Polkadot_Proto_CustomCallIndices", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "moduleIndex", + "printedName": "moduleIndex", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -260798,22 +260746,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -260830,22 +260770,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -260862,8 +260794,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32VvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -260872,23 +260804,27 @@ }, { "kind": "Var", - "name": "transfer", - "printedName": "transfer", + "name": "methodIndex", + "printedName": "methodIndex", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -260897,96 +260833,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "moduleName": "WalletCore", "accessorKind": "get" }, { @@ -261001,15 +260857,16 @@ }, { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -261024,8 +260881,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32VvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -261045,8 +260902,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -261068,8 +260925,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -261092,8 +260949,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -261110,8 +260967,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -261119,548 +260976,558 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "transfer", - "printedName": "transfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesVACycfc", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Enum", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ + "Mutating", "AccessControl" ], - "conformances": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "Transfer", - "printedName": "Transfer", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "TW_Polkadot_Proto_CallIndices", + "children": [ + { + "kind": "Var", + "name": "variant", + "printedName": "variant", + "children": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvM", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "accessorKind": "get" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "set" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0VvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0VvM", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -261669,54 +261536,92 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "implicit": true, + "accessorKind": "set" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Variant", + "printedName": "OneOf_Variant", + "children": [ + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant.Type) -> (WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" + } + ] + } + ] + } ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO6customyAeA0c1_d1_e7_CustomfG0VcAEmF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO6customyAeA0c1_d1_e7_CustomfG0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Function", @@ -261731,649 +261636,58 @@ }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", - "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", + "declKind": "Enum", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchTransfer", - "printedName": "BatchTransfer", - "children": [ - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesVACycfc", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262393,8 +261707,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262419,8 +261733,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -262442,8 +261756,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262468,8 +261782,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -262496,8 +261810,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -262527,8 +261841,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -262552,20 +261866,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262587,8 +261901,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -262606,8 +261920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -262617,8 +261931,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -262671,8 +261985,8 @@ }, { "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "TW_Polkadot_Proto_Staking", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "TW_Polkadot_Proto_Balance", "children": [ { "kind": "Var", @@ -262682,21 +261996,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -262714,21 +262028,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -262746,21 +262060,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -262777,8 +262091,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262787,19 +262101,19 @@ }, { "kind": "Var", - "name": "bond", - "printedName": "bond", + "name": "transfer", + "printedName": "transfer", "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262812,14 +262126,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262835,14 +262149,14 @@ }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -262858,8 +262172,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262868,19 +262182,19 @@ }, { "kind": "Var", - "name": "bondAndNominate", - "printedName": "bondAndNominate", + "name": "batchTransfer", + "printedName": "batchTransfer", "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262893,14 +262207,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262916,14 +262230,14 @@ }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -262939,8 +262253,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262949,19 +262263,19 @@ }, { "kind": "Var", - "name": "bondExtra", - "printedName": "bondExtra", + "name": "assetTransfer", + "printedName": "assetTransfer", "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262974,14 +262288,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262997,14 +262311,14 @@ }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -263020,8 +262334,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263030,19 +262344,19 @@ }, { "kind": "Var", - "name": "unbond", - "printedName": "unbond", + "name": "batchAssetTransfer", + "printedName": "batchAssetTransfer", "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -263055,14 +262369,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -263078,14 +262392,14 @@ }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -263101,8 +262415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263111,23 +262425,26 @@ }, { "kind": "Var", - "name": "withdrawUnbonded", - "printedName": "withdrawUnbonded", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -263136,15 +262453,16 @@ "children": [ { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -263159,15 +262477,16 @@ }, { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -263182,8 +262501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263191,859 +262510,199 @@ ] }, { - "kind": "Var", - "name": "nominate", - "printedName": "nominate", + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", "children": [ { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "transfer", + "printedName": "transfer", "children": [ { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "batchTransfer", + "printedName": "batchTransfer", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chill", - "printedName": "chill", - "children": [ - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "assetTransfer", + "printedName": "assetTransfer", "children": [ { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chillAndUnbond", - "printedName": "chillAndUnbond", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "rebond", - "printedName": "rebond", - "children": [ - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "bond", - "printedName": "bond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bondAndNominate", - "printedName": "bondAndNominate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bondExtra", - "printedName": "bondExtra", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "unbond", - "printedName": "unbond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawUnbonded", - "printedName": "withdrawUnbonded", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nominate", - "printedName": "nominate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "chill", - "printedName": "chill", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "chillAndUnbond", - "printedName": "chillAndUnbond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "rebond", - "printedName": "rebond", + "kind": "Var", + "name": "batchAssetTransfer", + "printedName": "batchAssetTransfer", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" }, { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ] } @@ -264051,8 +262710,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", "moduleName": "WalletCore" }, { @@ -264069,19 +262728,19 @@ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" }, { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264089,12 +262748,11 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -264108,13 +262766,13 @@ }, { "kind": "TypeDecl", - "name": "Bond", - "printedName": "Bond", + "name": "Transfer", + "printedName": "Transfer", "children": [ { "kind": "Var", - "name": "controller", - "printedName": "controller", + "name": "toAddress", + "printedName": "toAddress", "children": [ { "kind": "TypeNominal", @@ -264124,8 +262782,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264148,8 +262806,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264172,8 +262830,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264190,8 +262848,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264211,8 +262869,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264235,8 +262893,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264259,8 +262917,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264277,8 +262935,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264287,19 +262945,19 @@ }, { "kind": "Var", - "name": "rewardDestination", - "printedName": "rewardDestination", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264316,14 +262974,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264340,14 +262998,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264364,14 +263022,159 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", "name": "unknownFields", @@ -264385,8 +263188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264408,8 +263211,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264432,8 +263235,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264450,8 +263253,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264465,14 +263268,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -264492,8 +263295,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264518,8 +263321,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264541,8 +263344,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264567,8 +263370,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264595,8 +263398,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -264626,8 +263429,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -264651,20 +263454,20 @@ }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264686,8 +263489,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -264705,8 +263508,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -264716,8 +263519,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -264770,32 +263573,29 @@ }, { "kind": "TypeDecl", - "name": "BondAndNominate", - "printedName": "BondAndNominate", + "name": "BatchTransfer", + "printedName": "BatchTransfer", "children": [ { "kind": "Var", - "name": "controller", - "printedName": "controller", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -264804,16 +263604,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -264828,16 +263627,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -264852,8 +263650,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264862,27 +263660,24 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -264891,178 +263686,69 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "rewardDestination", - "printedName": "rewardDestination", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16clearCallIndicesyyF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "funcSelfKind": "Mutating" }, { "kind": "Var", - "name": "nominators", - "printedName": "nominators", + "name": "transfers", + "printedName": "transfers", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -265074,21 +263760,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265106,21 +263792,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265137,8 +263823,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265158,8 +263844,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265181,8 +263867,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265205,8 +263891,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265223,8 +263909,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265238,14 +263924,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -265265,8 +263951,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265291,8 +263977,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265314,8 +264000,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265340,8 +264026,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265368,8 +264054,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -265399,8 +264085,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -265424,20 +264110,20 @@ }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265459,8 +264145,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265478,8 +264164,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265489,8 +264175,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -265543,9 +264229,241 @@ }, { "kind": "TypeDecl", - "name": "BondExtra", - "printedName": "BondExtra", + "name": "AssetTransfer", + "printedName": "AssetTransfer", "children": [ + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "toAddress", + "printedName": "toAddress", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", "name": "value", @@ -265559,8 +264477,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265583,8 +264501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265607,8 +264525,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265625,8 +264543,182 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "assetID", + "printedName": "assetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "feeAssetID", + "printedName": "feeAssetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265646,8 +264738,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265669,8 +264761,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265693,8 +264785,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265711,8 +264803,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265726,14 +264818,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -265753,8 +264845,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265779,8 +264871,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265802,8 +264894,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265828,8 +264920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265856,8 +264948,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -265887,8 +264979,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -265912,20 +265004,20 @@ }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265947,8 +265039,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265966,8 +265058,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265977,8 +265069,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -266031,24 +265123,169 @@ }, { "kind": "TypeDecl", - "name": "Unbond", - "printedName": "Unbond", + "name": "BatchAssetTransfer", + "printedName": "BatchAssetTransfer", "children": [ { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "feeAssetID", + "printedName": "feeAssetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -266065,14 +265302,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -266089,14 +265326,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -266113,8 +265350,118 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "transfers", + "printedName": "transfers", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -266134,8 +265481,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -266157,8 +265504,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -266181,8 +265528,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -266199,8 +265546,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -266214,14 +265561,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -266241,8 +265588,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266267,8 +265614,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -266290,8 +265637,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266316,8 +265663,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -266344,8 +265691,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -266375,8 +265722,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -266400,20 +265747,20 @@ }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266435,8 +265782,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -266454,8 +265801,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -266465,8 +265812,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -266518,306 +265865,554 @@ ] }, { - "kind": "TypeDecl", - "name": "Rebond", - "printedName": "Rebond", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "TW_Polkadot_Proto_Staking", + "children": [ + { + "kind": "Var", + "name": "messageOneof", + "printedName": "messageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bond", + "printedName": "bond", + "children": [ { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bondAndNominate", + "printedName": "bondAndNominate", + "children": [ + { + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -266826,205 +266421,1216 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessorKind": "set" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bondExtra", + "printedName": "bondExtra", + "children": [ + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "accessorKind": "get" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unbond", + "printedName": "unbond", + "children": [ + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "withdrawUnbonded", + "printedName": "withdrawUnbonded", + "children": [ { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "TypeDecl", - "name": "WithdrawUnbonded", - "printedName": "WithdrawUnbonded", + "kind": "Var", + "name": "nominate", + "printedName": "nominate", "children": [ { - "kind": "Var", - "name": "slashingSpans", - "printedName": "slashingSpans", + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chill", + "printedName": "chill", + "children": [ + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chillAndUnbond", + "printedName": "chillAndUnbond", + "children": [ + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rebond", + "printedName": "rebond", + "children": [ + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "bond", + "printedName": "bond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "bondAndNominate", + "printedName": "bondAndNominate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "bondExtra", + "printedName": "bondExtra", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "unbond", + "printedName": "unbond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "withdrawUnbonded", + "printedName": "withdrawUnbonded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "nominate", + "printedName": "nominate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "chill", + "printedName": "chill", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "chillAndUnbond", + "printedName": "chillAndUnbond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "rebond", + "printedName": "rebond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bond", + "printedName": "Bond", + "children": [ + { + "kind": "Var", + "name": "controller", + "printedName": "controller", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -267041,14 +267647,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267065,14 +267671,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267089,8 +267695,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -267099,24 +267705,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -267127,14 +267734,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267151,14 +267758,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267175,59 +267782,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rewardDestination", + "printedName": "rewardDestination", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -267237,298 +267821,82 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Nominate", - "printedName": "Nominate", - "children": [ { "kind": "Var", - "name": "nominators", - "printedName": "nominators", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -267537,24 +267905,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -267569,24 +267928,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -267601,14 +267951,77 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", "name": "unknownFields", @@ -267622,8 +268035,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -267645,8 +268058,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267669,8 +268082,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267687,8 +268100,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -267702,14 +268115,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -267729,8 +268142,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267755,8 +268168,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -267778,8 +268191,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267804,8 +268217,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -267832,8 +268245,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -267863,8 +268276,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -267888,20 +268301,20 @@ }, { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" }, { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267923,8 +268336,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -267942,8 +268355,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -267953,8 +268366,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -268007,24 +268420,24 @@ }, { "kind": "TypeDecl", - "name": "ChillAndUnbond", - "printedName": "ChillAndUnbond", + "name": "BondAndNominate", + "printedName": "BondAndNominate", "children": [ { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "controller", + "printedName": "controller", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -268041,14 +268454,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268065,14 +268478,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268089,8 +268502,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -268099,24 +268512,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -268127,14 +268541,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268151,14 +268565,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268175,59 +268589,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rewardDestination", + "printedName": "rewardDestination", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -268237,46 +268628,92 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "nominators", + "printedName": "nominators", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -268286,136 +268723,180 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -268424,80 +268905,41 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Chill", - "printedName": "Chill", - "children": [ { "kind": "Var", "name": "unknownFields", @@ -268511,14 +268953,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -268535,8 +268976,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268559,8 +269000,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268577,8 +269018,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -268592,14 +269033,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -268619,8 +269060,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268645,8 +269086,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -268668,8 +269109,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268694,8 +269135,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -268722,8 +269163,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -268753,8 +269194,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -268778,20 +269219,20 @@ }, { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" }, { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268813,8 +269254,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -268832,8 +269273,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -268843,8 +269284,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -268896,391 +269337,224 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "TypeDecl", + "name": "BondExtra", + "printedName": "BondExtra", "children": [ { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingVACycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + ] }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "TW_Polkadot_Proto_SigningInput", - "children": [ - { - "kind": "Var", - "name": "blockHash", - "printedName": "blockHash", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", @@ -269288,149 +269562,226 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "genesisHash", - "printedName": "genesisHash", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "nonce", - "printedName": "nonce", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -269439,240 +269790,194 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "specVersion", - "printedName": "specVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + }, + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transactionVersion", - "printedName": "transactionVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { - "kind": "Var", - "name": "tip", - "printedName": "tip", + "kind": "TypeDecl", + "name": "Unbond", + "printedName": "Unbond", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", @@ -269681,164 +269986,167 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "era", - "printedName": "era", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasEra", - "printedName": "hasEra", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", @@ -269847,363 +270155,297 @@ "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearEra", - "printedName": "clearEra()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -270212,722 +270454,600 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "stakingCall", - "printedName": "stakingCall", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "name": "Rebond", + "printedName": "Rebond", "children": [ { "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "name": "value", + "printedName": "value", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" - } - ] + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "stakingCall", - "printedName": "stakingCall", + "name": "callIndices", + "printedName": "callIndices", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ] + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", - "moduleName": "WalletCore" + ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" - }, + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16clearCallIndicesyyF", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "TW_Polkadot_Proto_SigningOutput", - "children": [ - { - "kind": "Var", - "name": "encoded", - "printedName": "encoded", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -270936,196 +271056,404 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WithdrawUnbonded", + "printedName": "WithdrawUnbonded", + "children": [ + { + "kind": "Var", + "name": "slashingSpans", + "printedName": "slashingSpans", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", @@ -271133,42 +271461,21 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", @@ -271177,108 +271484,105 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -271287,47 +271591,47 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", @@ -271336,136 +271640,143 @@ "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", @@ -271474,1264 +271785,1094 @@ "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PrivateKey", - "printedName": "PrivateKey", - "children": [ - { - "kind": "Function", - "name": "isValid", - "printedName": "isValid(data:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", - "mangledName": "$s10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "TypeDecl", + "name": "Nominate", + "printedName": "Nominate", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "nominators", + "printedName": "nominators", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyCACycfc", - "mangledName": "$s10WalletCore10PrivateKeyCACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", - "mangledName": "$s10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyC3keyACSgAC_tcfc", - "mangledName": "$s10WalletCore10PrivateKeyC3keyACSgAC_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getPublicKey", - "printedName": "getPublicKey(coinType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyByType", - "printedName": "getPublicKeyByType(pubkeyType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeySecp256k1", - "printedName": "getPublicKeySecp256k1(compressed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyNist256p1", - "printedName": "getPublicKeyNist256p1()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519", - "printedName": "getPublicKeyEd25519()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519Blake2b", - "printedName": "getPublicKeyEd25519Blake2b()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519Cardano", - "printedName": "getPublicKeyEd25519Cardano()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyCurve25519", - "printedName": "getPublicKeyCurve25519()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSharedKey", - "printedName": "getSharedKey(publicKey:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", - "mangledName": "$s10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sign", - "printedName": "sign(digest:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", - "mangledName": "$s10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "signAsDER", - "printedName": "signAsDER(digest:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "signZilliqaSchnorr", - "printedName": "signZilliqaSchnorr(message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" } ], - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore10PrivateKeyC", - "mangledName": "$s10WalletCore10PrivateKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "PrivateKeyType", - "printedName": "PrivateKeyType", - "children": [ - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PrivateKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore14PrivateKeyTypeO7defaultyA2CmF", - "mangledName": "$s10WalletCore14PrivateKeyTypeO7defaultyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "cardano", - "printedName": "cardano", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PrivateKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", - "mangledName": "$s10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKeyType?", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - } - ], - "usr": "s:Sa" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore14PrivateKeyTypeO", - "mangledName": "$s10WalletCore14PrivateKeyTypeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PublicKey", - "printedName": "PublicKey", - "children": [ - { - "kind": "Function", - "name": "isValid", - "printedName": "isValid(data:type:)", - "children": [ + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", - "mangledName": "$s10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "recover", - "printedName": "recover(signature:message:)", + "kind": "TypeDecl", + "name": "ChillAndUnbond", + "printedName": "ChillAndUnbond", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKey?", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", - "mangledName": "$s10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isCompressed", - "printedName": "isCompressed", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvp", - "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvg", - "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "compressed", - "printedName": "compressed", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC10compressedACvp", - "mangledName": "$s10WalletCore9PublicKeyC10compressedACvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC10compressedACvg", - "mangledName": "$s10WalletCore9PublicKeyC10compressedACvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "uncompressed", - "printedName": "uncompressed", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC12uncompressedACvp", - "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Void", + "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC12uncompressedACvg", - "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16clearCallIndicesyyF", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "Mutating", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "keyType", - "printedName": "keyType", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", - "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", - "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC11descriptionSSvp", - "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -272740,609 +272881,875 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC11descriptionSSvg", - "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:type:)", - "children": [ + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKey?", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", - "mangledName": "$s10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "verify", - "printedName": "verify(signature:message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", "moduleName": "WalletCore", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyAsDER", - "printedName": "verifyAsDER(signature:message:)", - "children": [ + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyZilliqaSchnorr", - "printedName": "verifyZilliqaSchnorr(signature:message:)", - "children": [ + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Var", - "name": "bitcoinKeyHash", - "printedName": "bitcoinKeyHash", + "kind": "TypeDecl", + "name": "Chill", + "printedName": "Chill", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", - "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", - "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:10WalletCore9PublicKeyC", - "mangledName": "$s10WalletCore9PublicKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "PublicKeyType", - "printedName": "PublicKeyType", - "children": [ - { - "kind": "Var", - "name": "secp256k1", - "printedName": "secp256k1", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "secp256k1Extended", - "printedName": "secp256k1Extended", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nist256p1", - "printedName": "nist256p1", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nist256p1Extended", - "printedName": "nist256p1Extended", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519", - "printedName": "ed25519", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO7ed25519yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO7ed25519yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519Blake2b", - "printedName": "ed25519Blake2b", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "curve25519", - "printedName": "curve25519", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO10curve25519yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO10curve25519yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519Cardano", - "printedName": "ed25519Cardano", - "children": [ + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "starkex", - "printedName": "starkex", - "children": [ + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO7starkexyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO7starkexyA2CmF", - "moduleName": "WalletCore" + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKeyType?", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingVACycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -273351,46 +273758,185 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", + "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -273399,46 +273945,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore13PublicKeyTypeO", - "mangledName": "$s10WalletCore13PublicKeyTypeO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -273449,456 +274007,41 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "Purpose", - "printedName": "Purpose", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "TW_Polkadot_Proto_Identity", "children": [ { "kind": "Var", - "name": "bip44", - "printedName": "bip44", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip44yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip44yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip49", - "printedName": "bip49", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip49yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip49yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip84", - "printedName": "bip84", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip84yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip84yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip1852", - "printedName": "bip1852", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO7bip1852yA2CmF", - "mangledName": "$s10WalletCore7PurposeO7bip1852yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.Purpose?", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore7PurposeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvpZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore7PurposeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore7PurposeO", - "mangledName": "$s10WalletCore7PurposeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "TW_Ripple_Proto_CurrencyAmount", - "children": [ - { - "kind": "Var", - "name": "currency", - "printedName": "currency", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -273915,14 +274058,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -273939,14 +274090,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -273963,8 +274122,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -273973,27 +274132,23 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "joinIdentityAsKey", + "printedName": "joinIdentityAsKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -274002,16 +274157,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -274026,16 +274180,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -274050,8 +274203,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274060,27 +274213,23 @@ }, { "kind": "Var", - "name": "issuer", - "printedName": "issuer", + "name": "addAuthorization", + "printedName": "addAuthorization", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -274089,16 +274238,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -274113,16 +274261,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -274137,8 +274284,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274158,8 +274305,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -274181,8 +274328,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -274205,8 +274352,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -274223,8 +274370,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274232,492 +274379,401 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "joinIdentityAsKey", + "printedName": "joinIdentityAsKey", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "kind": "Var", + "name": "addAuthorization", + "printedName": "addAuthorization", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO16addAuthorizationyAeC03AddL0VcAEmF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO16addAuthorizationyAeC03AddL0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Enum", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeDecl", + "name": "JoinIdentityAsKey", + "printedName": "JoinIdentityAsKey", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "TW_Ripple_Proto_OperationTrustSet", - "children": [ - { - "kind": "Var", - "name": "limitAmount", - "printedName": "limitAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "accessorKind": "get" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16clearCallIndicesyyF", "moduleName": "WalletCore", - "accessorKind": "set" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "authID", + "printedName": "authID", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasLimitAmount", - "printedName": "hasLimitAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearLimitAmount", - "printedName": "clearLimitAmount()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", @@ -274726,108 +274782,105 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyVAEycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -274836,47 +274889,47 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", @@ -274885,276 +274938,47 @@ "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "TW_Ripple_Proto_OperationPayment", - "children": [ - { - "kind": "Var", - "name": "amountOneof", - "printedName": "amountOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -275163,261 +274987,340 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" + }, + { + "kind": "TypeNominal", + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currencyAmount", - "printedName": "currencyAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AddAuthorization", + "printedName": "AddAuthorization", + "children": [ + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "destination", - "printedName": "destination", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "target", + "printedName": "target", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "String", @@ -275425,104 +275328,208 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "destinationTag", - "printedName": "destinationTag", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "hasData", + "printedName": "hasData", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearData", + "printedName": "clearData()", "children": [ { "kind": "TypeNominal", @@ -275530,67 +275537,109 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9clearDatayyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9clearDatayyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "expiry", + "printedName": "expiry", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UnknownStorage", @@ -275598,182 +275647,1705 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_AmountOneof", - "printedName": "OneOf_AmountOneof", - "children": [ + ] + }, { - "kind": "Var", - "name": "amount", - "printedName": "amount", + "kind": "TypeDecl", + "name": "DataMessage", + "printedName": "DataMessage", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "currencyAmount", - "printedName": "currencyAmount", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageVAGycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageVAGycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV2eeoiySbAG_AGtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV2eeoiySbAG_AGtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { - "kind": "Conformance", + "kind": "TypeDecl", + "name": "AuthData", + "printedName": "AuthData", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAsset", + "printedName": "hasAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV10clearAssetyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "extrinsic", + "printedName": "extrinsic", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasExtrinsic", + "printedName": "hasExtrinsic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearExtrinsic", + "printedName": "clearExtrinsic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearExtrinsicyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearExtrinsicyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "portfolio", + "printedName": "portfolio", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPortfolio", + "printedName": "hasPortfolio", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPortfolio", + "printedName": "clearPortfolio()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearPortfolioyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearPortfolioyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataVAGycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataVAGycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV2eeoiySbAG_AGtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV2eeoiySbAG_AGtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationVAEycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", "name": "Equatable", "printedName": "Equatable", "usr": "s:SQ", @@ -275788,14 +277360,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityVACycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -275815,8 +277387,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -275841,8 +277413,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -275864,8 +277436,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -275890,8 +277462,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -275918,8 +277490,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -275949,8 +277521,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -275974,20 +277546,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276009,8 +277581,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276028,8 +277600,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276039,8 +277611,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -276093,24 +277665,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "TW_Ripple_Proto_OperationNFTokenBurn", + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "TW_Polkadot_Proto_PolymeshCall", "children": [ { "kind": "Var", - "name": "nftokenID", - "printedName": "nftokenID", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -276127,14 +277707,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -276151,14 +277739,22 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -276175,8 +277771,89 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "identityCall", + "printedName": "identityCall", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276196,8 +277873,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -276219,8 +277896,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -276243,8 +277920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -276261,14 +277938,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "identityCall", + "printedName": "identityCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity) -> WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity) -> WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -276276,14 +278058,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallVACycfc", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -276303,8 +278085,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276329,8 +278111,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -276352,8 +278134,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276378,8 +278160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -276406,8 +278188,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -276437,8 +278219,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -276462,20 +278244,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276497,8 +278279,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276516,8 +278298,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276527,8 +278309,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -276581,13 +278363,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "TW_Polkadot_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "nftokenID", - "printedName": "nftokenID", + "name": "blockHash", + "printedName": "blockHash", "children": [ { "kind": "TypeNominal", @@ -276597,16 +278379,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276621,10 +278400,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276645,10 +278423,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276663,8 +278440,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276673,27 +278450,24 @@ }, { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "genesisHash", + "printedName": "genesisHash", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276702,16 +278476,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276726,16 +278499,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276750,8 +278522,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276760,26 +278532,24 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "nonce", + "printedName": "nonce", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276788,16 +278558,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276812,16 +278581,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276836,8 +278604,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276845,51 +278613,107 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "specVersion", + "printedName": "specVersion", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "transactionVersion", + "printedName": "transactionVersion", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276898,47 +278722,80 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "tip", + "printedName": "tip", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276947,136 +278804,162 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "era", + "printedName": "era", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "hasEra", + "printedName": "hasEra", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -277085,84 +278968,45 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearEra", + "printedName": "clearEra()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "children": [ { "kind": "Var", - "name": "sellOffer", - "printedName": "sellOffer", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", @@ -277172,16 +279016,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277196,10 +279037,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277220,10 +279060,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277238,8 +279077,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -277248,26 +279087,24 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "network", + "printedName": "network", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277276,16 +279113,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277300,16 +279136,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277324,60 +279159,34 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "multiAddress", + "printedName": "multiAddress", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277386,47 +279195,88 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277435,136 +279285,176 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "balanceCall", + "printedName": "balanceCall", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" } ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "stakingCall", + "printedName": "stakingCall", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -277573,111 +279463,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "children": [ { "kind": "Var", - "name": "tokenOffers", - "printedName": "tokenOffers", + "name": "polymeshCall", + "printedName": "polymeshCall", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277686,24 +279544,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277718,24 +279567,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277750,8 +279590,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -277771,8 +279611,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -277794,8 +279634,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -277818,8 +279658,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -277836,14 +279676,220 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "balanceCall", + "printedName": "balanceCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "stakingCall", + "printedName": "stakingCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "polymeshCall", + "printedName": "polymeshCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_PolymeshCall) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_PolymeshCall) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO12polymeshCallyAeA0c1_d1_e9_PolymeshM0VcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO12polymeshCallyAeA0c1_d1_e9_PolymeshM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -277851,14 +279897,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -277878,8 +279924,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -277904,8 +279950,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -277927,8 +279973,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -277953,8 +279999,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -277981,8 +280027,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -278012,8 +280058,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -278037,20 +280083,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -278072,8 +280118,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -278091,8 +280137,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -278102,8 +280148,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -278156,24 +280202,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "TW_Ripple_Proto_SigningInput", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "TW_Polkadot_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "fee", - "printedName": "fee", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278190,14 +280236,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278214,14 +280260,14 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278238,8 +280284,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278248,19 +280294,19 @@ }, { "kind": "Var", - "name": "sequence", - "printedName": "sequence", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278277,14 +280323,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278301,14 +280347,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278325,8 +280371,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278335,19 +280381,19 @@ }, { "kind": "Var", - "name": "lastLedgerSequence", - "printedName": "lastLedgerSequence", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278364,14 +280410,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278388,14 +280434,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278412,8 +280458,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278422,25 +280468,24 @@ }, { "kind": "Var", - "name": "account", - "printedName": "account", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -278451,14 +280496,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278475,14 +280520,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278499,36 +280544,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "flags", - "printedName": "flags", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -278538,84 +280606,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -278625,191 +280655,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "operationOneof", - "printedName": "operationOneof", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "opTrustSet", - "printedName": "opTrustSet", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -278818,78 +280793,146 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PrivateKey", + "printedName": "PrivateKey", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(data:curve:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "mangledName": "$s10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -278899,412 +280942,410 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "opNftokenBurn", - "printedName": "opNftokenBurn", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyCACycfc", + "mangledName": "$s10WalletCore10PrivateKeyCACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", + "mangledName": "$s10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyC3keyACSgAC_tcfc", + "mangledName": "$s10WalletCore10PrivateKeyC3keyACSgAC_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "opNftokenCreateOffer", - "printedName": "opNftokenCreateOffer", + "kind": "Function", + "name": "getPublicKey", + "printedName": "getPublicKey(coinType:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyByType", + "printedName": "getPublicKeyByType(pubkeyType:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeySecp256k1", + "printedName": "getPublicKeySecp256k1(compressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "opNftokenAcceptOffer", - "printedName": "opNftokenAcceptOffer", + "kind": "Function", + "name": "getPublicKeyNist256p1", + "printedName": "getPublicKeyNist256p1()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519", + "printedName": "getPublicKeyEd25519()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519Blake2b", + "printedName": "getPublicKeyEd25519Blake2b()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519Cardano", + "printedName": "getPublicKeyEd25519Cardano()", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "opNftokenCancelOffer", - "printedName": "opNftokenCancelOffer", + "kind": "Function", + "name": "getPublicKeyCurve25519", + "printedName": "getPublicKeyCurve25519()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSharedKey", + "printedName": "getSharedKey(publicKey:curve:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", + "mangledName": "$s10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sign", + "printedName": "sign(digest:curve:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "publicKey", - "printedName": "publicKey", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", + "mangledName": "$s10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signAsDER", + "printedName": "signAsDER(digest:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", @@ -279313,23 +281354,36 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signZilliqaSchnorr", + "printedName": "signZilliqaSchnorr(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Data", @@ -279337,520 +281391,167 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore10PrivateKeyC", + "mangledName": "$s10WalletCore10PrivateKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "PrivateKeyType", + "printedName": "PrivateKeyType", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_OperationOneof", - "printedName": "OneOf_OperationOneof", - "children": [ - { - "kind": "Var", - "name": "opTrustSet", - "printedName": "opTrustSet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenBurn", - "printedName": "opNftokenBurn", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenCreateOffer", - "printedName": "opNftokenCreateOffer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "name": "Metatype", + "printedName": "WalletCore.PrivateKeyType.Type", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore14PrivateKeyTypeO7defaultyA2CmF", + "mangledName": "$s10WalletCore14PrivateKeyTypeO7defaultyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "cardano", + "printedName": "cardano", + "children": [ { - "kind": "Var", - "name": "opNftokenAcceptOffer", - "printedName": "opNftokenAcceptOffer", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenCancelOffer", - "printedName": "opNftokenCancelOffer", - "children": [ + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PrivateKeyType.Type", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "declKind": "EnumElement", + "usr": "s:10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", + "mangledName": "$s10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Optional", + "printedName": "WalletCore.PrivateKeyType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -279859,47 +281560,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -279908,136 +281608,224 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore14PrivateKeyTypeO", + "mangledName": "$s10WalletCore14PrivateKeyTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "usr": "s:SY", + "mangledName": "$sSY" }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PublicKey", + "printedName": "PublicKey", + "children": [ { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "isValid", + "printedName": "isValid(data:type:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", + "mangledName": "$s10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "recover", + "printedName": "recover(signature:message:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "WalletCore.PublicKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", + "mangledName": "$s10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "isCompressed", + "printedName": "isCompressed", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvp", + "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -280046,103 +281834,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvg", + "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "TW_Ripple_Proto_SigningOutput", - "children": [ { "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "name": "compressed", + "printedName": "compressed", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "usr": "s:10WalletCore9PublicKeyC10compressedACvp", + "mangledName": "$s10WalletCore9PublicKeyC10compressedACvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280151,85 +281879,88 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "usr": "s:10WalletCore9PublicKeyC10compressedACvg", + "mangledName": "$s10WalletCore9PublicKeyC10compressedACvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "uncompressed", + "printedName": "uncompressed", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore9PublicKeyC12uncompressedACvp", + "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvp", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "usr": "s:10WalletCore9PublicKeyC12uncompressedACvg", + "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280238,85 +281969,43 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "keyType", + "printedName": "keyType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", + "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280325,173 +282014,26 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", + "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -280501,18 +282043,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore9PublicKeyC11descriptionSSvp", + "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280527,130 +282065,61 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore9PublicKeyC11descriptionSSvg", + "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:type:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "WalletCore.PublicKey?", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Constructor", + "usr": "s:10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", + "mangledName": "$s10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "verify", + "printedName": "verify(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280660,142 +282129,32 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "RippleXAddress", - "printedName": "RippleXAddress", - "children": [ { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "verifyAsDER", + "printedName": "verifyAsDER(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280805,22 +282164,21 @@ }, { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "Final", "AccessControl", @@ -280830,8 +282188,8 @@ }, { "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:)", + "name": "verifyZilliqaSchnorr", + "printedName": "verifyZilliqaSchnorr(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280841,16 +282199,21 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", - "mangledName": "$s10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "usr": "s:10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "Final", "AccessControl", @@ -280860,25 +282223,25 @@ }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "bitcoinKeyHash", + "printedName": "bitcoinKeyHash", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvp", + "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", + "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -280887,194 +282250,325 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvg", + "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", + "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", "moduleName": "WalletCore", "declAttributes": [ "Final" ], + "isFromExtension": true, "accessorKind": "get" } ] - }, + } + ], + "declKind": "Class", + "usr": "s:10WalletCore9PublicKeyC", + "mangledName": "$s10WalletCore9PublicKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "PublicKeyType", + "printedName": "PublicKeyType", + "children": [ { "kind": "Var", - "name": "tag", - "printedName": "tag", + "name": "secp256k1", + "printedName": "secp256k1", "children": [ { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvp", - "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "secp256k1Extended", + "printedName": "secp256k1Extended", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvg", - "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", + "kind": "Var", + "name": "nist256p1", + "printedName": "nist256p1", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.RippleXAddress?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore14RippleXAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore14RippleXAddressC6stringACSgSS_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(publicKey:tag:)", + "kind": "Var", + "name": "nist256p1Extended", + "printedName": "nist256p1Extended", "children": [ { - "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", - "mangledName": "$s10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "ed25519", + "printedName": "ed25519", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore14RippleXAddressC", - "mangledName": "$s10WalletCore14RippleXAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO7ed25519yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO7ed25519yA2CmF", + "moduleName": "WalletCore" + }, { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + "kind": "Var", + "name": "ed25519Blake2b", + "printedName": "ed25519Blake2b", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SS58AddressType", - "printedName": "SS58AddressType", - "children": [ + "kind": "Var", + "name": "curve25519", + "printedName": "curve25519", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO10curve25519yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO10curve25519yA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", - "name": "polkadot", - "printedName": "polkadot", + "name": "ed25519Cardano", + "printedName": "ed25519Cardano", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.SS58AddressType.Type", + "printedName": "WalletCore.PublicKeyType.Type", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ] } @@ -281082,36 +282576,36 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore15SS58AddressTypeO8polkadotyA2CmF", - "mangledName": "$s10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "usr": "s:10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", "moduleName": "WalletCore" }, { "kind": "Var", - "name": "kusama", - "printedName": "kusama", + "name": "starkex", + "printedName": "starkex", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.SS58AddressType.Type", + "printedName": "WalletCore.PublicKeyType.Type", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ] } @@ -281119,8 +282613,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore15SS58AddressTypeO6kusamayA2CmF", - "mangledName": "$s10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "usr": "s:10WalletCore13PublicKeyTypeO7starkexyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO7starkexyA2CmF", "moduleName": "WalletCore" }, { @@ -281131,27 +282625,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.SS58AddressType?", + "printedName": "WalletCore.PublicKeyType?", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", "implicit": true, "init_kind": "Designated" @@ -281163,14 +282657,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", "implicit": true, "accessors": [ @@ -281181,14 +282675,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281203,21 +282697,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", + "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -281230,21 +282724,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -281254,14 +282748,14 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore15SS58AddressTypeO", - "mangledName": "$s10WalletCore15SS58AddressTypeO", + "usr": "s:10WalletCore13PublicKeyTypeO", + "mangledName": "$s10WalletCore13PublicKeyTypeO", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", @@ -281289,9 +282783,9 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ] } @@ -281312,13 +282806,13 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" @@ -281331,198 +282825,209 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SegwitAddress", - "printedName": "SegwitAddress", + "name": "Purpose", + "printedName": "Purpose", "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "bip44", + "printedName": "bip44", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" - }, - { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip44yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip44yA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:)", + "kind": "Var", + "name": "bip49", + "printedName": "bip49", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", - "mangledName": "$s10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip49yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip49yA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "bip84", + "printedName": "bip84", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip84yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip84yA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "hrp", - "printedName": "hrp", + "name": "bip1852", + "printedName": "bip1852", "children": [ { - "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvp", - "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO7bip1852yA2CmF", + "mangledName": "$s10WalletCore7PurposeO7bip1852yA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Purpose?", "children": [ { "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvg", - "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "witnessVersion", - "printedName": "witnessVersion", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", + "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -281531,43 +283036,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", + "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "witnessProgram", - "printedName": "witnessProgram", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", + "usr": "s:10WalletCore7PurposeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -281576,115 +283084,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", + "usr": "s:10WalletCore7PurposeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore7PurposeO", + "mangledName": "$s10WalletCore7PurposeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.SegwitAddress?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SegwitAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore13SegwitAddressC6stringACSgSS_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(hrp:publicKey:)", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" - }, - { - "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", - "mangledName": "$s10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore13SegwitAddressC", - "mangledName": "$s10WalletCore13SegwitAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } ] }, @@ -281707,13 +283205,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_Transfer", - "printedName": "TW_Solana_Proto_Transfer", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "TW_Ripple_Proto_CurrencyAmount", "children": [ { "kind": "Var", - "name": "recipient", - "printedName": "recipient", + "name": "currency", + "printedName": "currency", "children": [ { "kind": "TypeNominal", @@ -281723,8 +283221,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -281747,8 +283245,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281771,8 +283269,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -281789,8 +283287,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -281801,93 +283299,6 @@ "kind": "Var", "name": "value", "printedName": "value", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "memo", - "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -281897,8 +283308,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -281921,8 +283332,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281945,8 +283356,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -281963,8 +283374,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -281973,27 +283384,19 @@ }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "issuer", + "printedName": "issuer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282010,22 +283413,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282042,22 +283437,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282074,8 +283461,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282095,8 +283482,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282118,8 +283505,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282142,8 +283529,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282160,8 +283547,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282175,14 +283562,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferVACycfc", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferVACycfc", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -282202,8 +283589,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282228,8 +283615,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282251,8 +283638,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282277,8 +283664,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282305,8 +283692,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -282336,8 +283723,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -282361,20 +283748,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282396,8 +283783,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -282415,8 +283802,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -282426,8 +283813,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -282480,32 +283867,29 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "TW_Solana_Proto_DelegateStake", + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "TW_Ripple_Proto_OperationTrustSet", "children": [ { "kind": "Var", - "name": "validatorPubkey", - "printedName": "validatorPubkey", + "name": "limitAmount", + "printedName": "limitAmount", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -282514,16 +283898,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -282538,16 +283921,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -282562,8 +283944,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282572,27 +283954,24 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "hasLimitAmount", + "printedName": "hasLimitAmount", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -282601,148 +283980,40 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "kind": "Function", + "name": "clearLimitAmount", + "printedName": "clearLimitAmount()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", + "declKind": "Func", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "funcSelfKind": "Mutating" }, { "kind": "Var", @@ -282757,8 +284028,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282780,8 +284051,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282804,8 +284075,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282822,8 +284093,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282837,14 +284108,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -282864,8 +284135,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282890,8 +284161,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282913,8 +284184,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282939,8 +284210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282967,8 +284238,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -282998,8 +284269,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -283023,20 +284294,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283058,8 +284329,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283077,8 +284348,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283088,8 +284359,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -283142,13 +284413,286 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "TW_Solana_Proto_DeactivateStake", + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "TW_Ripple_Proto_OperationPayment", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "amountOneof", + "printedName": "amountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currencyAmount", + "printedName": "currencyAmount", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", @@ -283158,8 +284702,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283182,8 +284726,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283206,8 +284750,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283224,8 +284768,95 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destinationTag", + "printedName": "destinationTag", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283245,8 +284876,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283268,8 +284899,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283292,8 +284923,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283310,14 +284941,170 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_AmountOneof", + "printedName": "OneOf_AmountOneof", + "children": [ + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "currencyAmount", + "printedName": "currencyAmount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -283325,14 +285112,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -283352,8 +285139,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283378,8 +285165,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283401,8 +285188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283427,8 +285214,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283455,8 +285242,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -283486,8 +285273,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -283511,20 +285298,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283546,8 +285333,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283565,8 +285352,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283576,8 +285363,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -283630,32 +285417,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "TW_Solana_Proto_DeactivateAllStake", + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "TW_Ripple_Proto_OperationNFTokenBurn", "children": [ { "kind": "Var", - "name": "stakeAccounts", - "printedName": "stakeAccounts", + "name": "nftokenID", + "printedName": "nftokenID", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283672,22 +285451,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283704,22 +285475,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283736,8 +285499,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283757,8 +285520,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283780,8 +285543,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283804,8 +285567,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283822,8 +285585,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283837,14 +285600,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -283864,8 +285627,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283890,8 +285653,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283913,8 +285676,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283939,8 +285702,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283967,8 +285730,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -283998,8 +285761,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -284023,20 +285786,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284058,8 +285821,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284077,8 +285840,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284088,8 +285851,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -284142,24 +285905,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "TW_Solana_Proto_WithdrawStake", + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenCreateOffer", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "nftokenID", + "printedName": "nftokenID", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284176,14 +285939,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284200,14 +285963,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284224,8 +285987,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284234,19 +285997,19 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284263,14 +286026,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284287,14 +286050,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284311,8 +286074,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284332,8 +286095,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284355,8 +286118,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284379,8 +286142,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284397,8 +286160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284412,14 +286175,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -284439,8 +286202,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284465,8 +286228,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -284488,8 +286251,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284514,8 +286277,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -284542,8 +286305,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -284573,8 +286336,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -284598,20 +286361,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284633,8 +286396,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284652,8 +286415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284663,8 +286426,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -284717,24 +286480,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "TW_Solana_Proto_StakeAccountValue", + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "sellOffer", + "printedName": "sellOffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284751,14 +286514,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284775,14 +286538,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284799,8 +286562,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284809,106 +286572,19 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284930,8 +286606,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284954,8 +286630,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284972,8 +286648,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284987,14 +286663,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -285014,8 +286690,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285040,8 +286716,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285063,8 +286739,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285089,8 +286765,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285117,8 +286793,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -285148,8 +286824,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -285173,20 +286849,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285208,8 +286884,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285227,8 +286903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285238,8 +286914,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -285292,32 +286968,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "TW_Solana_Proto_WithdrawAllStake", + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenCancelOffer", "children": [ { "kind": "Var", - "name": "stakeAccounts", - "printedName": "stakeAccounts", + "name": "tokenOffers", + "printedName": "tokenOffers", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285335,21 +287011,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285367,21 +287043,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285398,8 +287074,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285419,8 +287095,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285442,8 +287118,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285466,8 +287142,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285484,8 +287160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285499,14 +287175,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -285526,8 +287202,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285552,8 +287228,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285575,8 +287251,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285601,8 +287277,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285629,8 +287305,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -285660,8 +287336,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -285685,20 +287361,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285720,8 +287396,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285739,8 +287415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285750,8 +287426,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -285804,24 +287480,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "TW_Solana_Proto_CreateTokenAccount", + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "TW_Ripple_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "mainAddress", - "printedName": "mainAddress", + "name": "fee", + "printedName": "fee", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285838,14 +287514,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285862,14 +287538,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285886,8 +287562,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285896,19 +287572,19 @@ }, { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "sequence", + "printedName": "sequence", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285925,14 +287601,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285949,14 +287625,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285973,8 +287649,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285983,19 +287659,19 @@ }, { "kind": "Var", - "name": "tokenAddress", - "printedName": "tokenAddress", + "name": "lastLedgerSequence", + "printedName": "lastLedgerSequence", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -286012,14 +287688,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286036,14 +287712,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286060,8 +287736,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286070,24 +287746,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "account", + "printedName": "account", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -286098,14 +287775,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286122,14 +287799,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286146,59 +287823,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "flags", + "printedName": "flags", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -286208,282 +287862,77 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "TW_Solana_Proto_TokenTransfer", - "children": [ { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -286500,14 +287949,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286524,14 +287973,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286548,8 +287997,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286558,25 +288007,32 @@ }, { "kind": "Var", - "name": "senderTokenAddress", - "printedName": "senderTokenAddress", + "name": "operationOneof", + "printedName": "operationOneof", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -286587,14 +288043,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286611,14 +288075,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286635,8 +288107,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286645,27 +288117,23 @@ }, { "kind": "Var", - "name": "recipientTokenAddress", - "printedName": "recipientTokenAddress", + "name": "opTrustSet", + "printedName": "opTrustSet", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286674,16 +288142,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286698,16 +288165,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286722,8 +288188,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286732,27 +288198,23 @@ }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "opPayment", + "printedName": "opPayment", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286761,16 +288223,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286785,16 +288246,15 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286809,8 +288269,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286819,27 +288279,23 @@ }, { "kind": "Var", - "name": "decimals", - "printedName": "decimals", + "name": "opNftokenBurn", + "printedName": "opNftokenBurn", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286848,16 +288304,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286872,16 +288327,15 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286896,8 +288350,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286906,27 +288360,23 @@ }, { "kind": "Var", - "name": "memo", - "printedName": "memo", + "name": "opNftokenCreateOffer", + "printedName": "opNftokenCreateOffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286935,16 +288385,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286959,16 +288408,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286983,8 +288431,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286993,35 +288441,23 @@ }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "opNftokenAcceptOffer", + "printedName": "opNftokenAcceptOffer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -287030,24 +288466,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -287062,24 +288489,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -287094,8 +288512,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287104,26 +288522,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "opNftokenCancelOffer", + "printedName": "opNftokenCancelOffer", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -287132,16 +288547,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -287156,16 +288570,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -287180,59 +288593,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "publicKey", + "printedName": "publicKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -287242,46 +288632,83 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -287291,30 +288718,544 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_OperationOneof", + "printedName": "OneOf_OperationOneof", + "children": [ + { + "kind": "Var", + "name": "opTrustSet", + "printedName": "opTrustSet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenBurn", + "printedName": "opNftokenBurn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenCreateOffer", + "printedName": "opNftokenCreateOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenAcceptOffer", + "printedName": "opNftokenAcceptOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenCancelOffer", + "printedName": "opNftokenCancelOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", "printedName": "()" }, { @@ -287325,8 +289266,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -287356,8 +289297,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -287381,20 +289322,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -287416,8 +289357,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -287435,8 +289376,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -287446,8 +289387,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -287500,24 +289441,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "TW_Solana_Proto_CreateAndTransferToken", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "TW_Ripple_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "recipientMainAddress", - "printedName": "recipientMainAddress", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287534,14 +289475,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287558,14 +289499,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287582,8 +289523,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287592,19 +289533,19 @@ }, { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287621,14 +289562,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287645,14 +289586,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287669,8 +289610,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287679,8 +289620,8 @@ }, { "kind": "Var", - "name": "recipientTokenAddress", - "printedName": "recipientTokenAddress", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", @@ -287690,8 +289631,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287714,8 +289655,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287738,8 +289679,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287756,8 +289697,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287766,25 +289707,24 @@ }, { "kind": "Var", - "name": "senderTokenAddress", - "printedName": "senderTokenAddress", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -287795,14 +289735,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287819,14 +289759,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287843,36 +289783,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -287882,84 +289845,46 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "decimals", - "printedName": "decimals", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -287969,85 +289894,136 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "memo", - "printedName": "memo", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" } ], - "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -288056,93 +290032,177 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RippleXAddress", + "printedName": "RippleXAddress", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + }, + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isValidString", + "printedName": "isValidString(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "mangledName": "$s10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288151,100 +290211,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "tag", + "printedName": "tag", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvp", + "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288253,108 +290256,247 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvg", + "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.RippleXAddress?", + "children": [ + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + } + ], + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore14RippleXAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore14RippleXAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(publicKey:tag:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", + "mangledName": "$s10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore14RippleXAddressC", + "mangledName": "$s10WalletCore14RippleXAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SS58AddressType", + "printedName": "SS58AddressType", + "children": [ + { + "kind": "Var", + "name": "polkadot", + "printedName": "polkadot", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Metatype", + "printedName": "WalletCore.SS58AddressType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "mangledName": "$s10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "kusama", + "printedName": "kusama", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.SS58AddressType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "mangledName": "$s10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "moduleName": "WalletCore" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "Optional", + "printedName": "WalletCore.SS58AddressType?", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -288363,47 +290505,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -288412,87 +290553,163 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore15SS58AddressTypeO", + "mangledName": "$s10WalletCore15SS58AddressTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "usr": "s:SY", + "mangledName": "$sSY" }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SegwitAddress", + "printedName": "SegwitAddress", + "children": [ { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + }, + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" } ], "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "isValidString", + "printedName": "isValidString(string:)", "children": [ { "kind": "TypeNominal", @@ -288502,46 +290719,44 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", + "mangledName": "$s10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", + "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -288550,103 +290765,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", + "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "TW_Solana_Proto_CreateNonceAccount", - "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "hrp", + "printedName": "hrp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvp", + "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288655,84 +290810,43 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvg", + "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "rent", - "printedName": "rent", + "name": "witnessVersion", + "printedName": "witnessVersion", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", + "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288741,66 +290855,26 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "nonceAccountPrivateKey", - "printedName": "nonceAccountPrivateKey", + "name": "witnessProgram", + "printedName": "witnessProgram", "children": [ { "kind": "TypeNominal", @@ -288810,16 +290884,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", + "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288834,11 +290906,176 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.SegwitAddress?", + "children": [ + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SegwitAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore13SegwitAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hrp:publicKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + }, + { + "kind": "TypeNominal", + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", + "mangledName": "$s10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore13SegwitAddressC", + "mangledName": "$s10WalletCore13SegwitAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SwiftProtobuf", + "printedName": "SwiftProtobuf", + "declKind": "Import", + "moduleName": "WalletCore" + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_Transfer", + "printedName": "TW_Solana_Proto_Transfer", + "children": [ + { + "kind": "Var", + "name": "recipient", + "printedName": "recipient", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { "kind": "Accessor", @@ -288852,14 +291089,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -288876,8 +291113,293 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -288897,8 +291419,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -288920,8 +291442,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -288944,8 +291466,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -288962,8 +291484,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -288977,14 +291499,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferVACycfc", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -289004,8 +291526,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289030,8 +291552,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289053,8 +291575,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289079,8 +291601,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289107,8 +291629,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -289138,8 +291660,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -289163,20 +291685,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289198,8 +291720,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289217,8 +291739,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289228,11 +291750,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -289281,13 +291804,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "TW_Solana_Proto_WithdrawNonceAccount", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "TW_Solana_Proto_DelegateStake", "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "validatorPubkey", + "printedName": "validatorPubkey", "children": [ { "kind": "TypeNominal", @@ -289297,8 +291820,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289321,8 +291844,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289345,8 +291868,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289363,8 +291886,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289373,24 +291896,25 @@ }, { "kind": "Var", - "name": "recipient", - "printedName": "recipient", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -289401,14 +291925,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289425,14 +291949,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289449,8 +291973,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289459,24 +291983,25 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -289487,14 +292012,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289511,14 +292036,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289535,8 +292060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289556,8 +292081,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289579,8 +292104,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289603,8 +292128,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289621,8 +292146,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289636,14 +292161,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -289663,8 +292188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289689,8 +292214,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289712,8 +292237,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289738,8 +292263,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289766,8 +292291,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -289797,8 +292322,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -289822,20 +292347,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289857,8 +292382,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289876,8 +292401,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289887,11 +292412,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -289940,13 +292466,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "TW_Solana_Proto_AdvanceNonceAccount", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "TW_Solana_Proto_DeactivateStake", "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", @@ -289956,8 +292482,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289980,8 +292506,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290004,8 +292530,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290022,8 +292548,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290043,8 +292569,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290066,8 +292592,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290090,8 +292616,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290108,8 +292634,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290123,14 +292649,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -290150,8 +292676,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290176,8 +292702,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -290199,8 +292725,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290225,8 +292751,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -290253,8 +292779,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -290284,8 +292810,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -290309,20 +292835,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290344,8 +292870,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -290363,8 +292889,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -290374,11 +292900,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -290427,24 +292954,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "TW_Solana_Proto_SigningInput", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "TW_Solana_Proto_DeactivateAllStake", "children": [ { "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "name": "stakeAccounts", + "printedName": "stakeAccounts", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290461,14 +292996,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290485,14 +293028,22 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290509,8 +293060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290519,25 +293070,24 @@ }, { "kind": "Var", - "name": "recentBlockhash", - "printedName": "recentBlockhash", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -290548,14 +293098,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290572,14 +293122,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290596,35 +293146,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "v0Msg", - "printedName": "v0Msg", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -290634,85 +293208,282 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "transactionType", - "printedName": "transactionType", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "TW_Solana_Proto_WithdrawStake", + "children": [ + { + "kind": "Var", + "name": "stakeAccount", + "printedName": "stakeAccount", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290729,22 +293500,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290761,22 +293524,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290793,8 +293548,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290803,23 +293558,27 @@ }, { "kind": "Var", - "name": "transferTransaction", - "printedName": "transferTransaction", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290828,15 +293587,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -290851,15 +293611,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -290874,8 +293635,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290884,23 +293645,26 @@ }, { "kind": "Var", - "name": "delegateStakeTransaction", - "printedName": "delegateStakeTransaction", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290909,15 +293673,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -290932,15 +293697,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -290955,33 +293721,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "deactivateStakeTransaction", - "printedName": "deactivateStakeTransaction", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290990,79 +293783,47 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "deactivateAllStakeTransaction", - "printedName": "deactivateAllStakeTransaction", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291071,65 +293832,100 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "withdrawTransaction", - "printedName": "withdrawTransaction", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + }, { "kind": "TypeNominal", "name": "TW_Solana_Proto_WithdrawStake", @@ -291137,13 +293933,35 @@ "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "AccessControl" ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -291152,79 +293970,103 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "TW_Solana_Proto_StakeAccountValue", + "children": [ { "kind": "Var", - "name": "withdrawAllTransaction", - "printedName": "withdrawAllTransaction", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291233,15 +294075,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291256,15 +294099,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291279,8 +294123,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291289,23 +294133,27 @@ }, { "kind": "Var", - "name": "createTokenAccountTransaction", - "printedName": "createTokenAccountTransaction", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291314,15 +294162,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291337,15 +294186,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291360,8 +294210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291370,23 +294220,26 @@ }, { "kind": "Var", - "name": "tokenTransferTransaction", - "printedName": "tokenTransferTransaction", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291395,15 +294248,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291418,15 +294272,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291441,33 +294296,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "createAndTransferTokenTransaction", - "printedName": "createAndTransferTokenTransaction", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291476,79 +294358,47 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createNonceAccount", - "printedName": "createNonceAccount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291557,79 +294407,249 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "TW_Solana_Proto_WithdrawAllStake", + "children": [ { "kind": "Var", - "name": "withdrawNonceAccount", - "printedName": "withdrawNonceAccount", + "name": "stakeAccounts", + "printedName": "stakeAccounts", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291638,15 +294658,24 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291661,15 +294690,24 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291684,8 +294722,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291694,23 +294732,26 @@ }, { "kind": "Var", - "name": "advanceNonceAccount", - "printedName": "advanceNonceAccount", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291719,15 +294760,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291742,15 +294784,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291765,18 +294808,39 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "sender", - "printedName": "sender", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -291786,15 +294850,17 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -291810,60 +294876,265 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "set" + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "TW_Solana_Proto_CreateTokenAccount", + "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "mainAddress", + "printedName": "mainAddress", "children": [ { "kind": "TypeNominal", @@ -291873,8 +295144,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -291897,8 +295168,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -291921,8 +295192,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -291939,8 +295210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291949,19 +295220,19 @@ }, { "kind": "Var", - "name": "feePayerPrivateKey", - "printedName": "feePayerPrivateKey", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -291978,14 +295249,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292002,14 +295273,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292026,8 +295297,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292036,8 +295307,8 @@ }, { "kind": "Var", - "name": "feePayer", - "printedName": "feePayer", + "name": "tokenAddress", + "printedName": "tokenAddress", "children": [ { "kind": "TypeNominal", @@ -292047,8 +295318,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -292071,8 +295342,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292095,8 +295366,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292113,8 +295384,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292134,8 +295405,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -292157,8 +295428,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292181,8 +295452,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292199,8 +295470,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292208,789 +295479,133 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_TransactionType", - "printedName": "OneOf_TransactionType", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "transferTransaction", - "printedName": "transferTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { - "kind": "Var", - "name": "delegateStakeTransaction", - "printedName": "delegateStakeTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "deactivateStakeTransaction", - "printedName": "deactivateStakeTransaction", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Var", - "name": "deactivateAllStakeTransaction", - "printedName": "deactivateAllStakeTransaction", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawTransaction", - "printedName": "withdrawTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawAllTransaction", - "printedName": "withdrawAllTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createTokenAccountTransaction", - "printedName": "createTokenAccountTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "tokenTransferTransaction", - "printedName": "tokenTransferTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createAndTransferTokenTransaction", - "printedName": "createAndTransferTokenTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createNonceAccount", - "printedName": "createNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawNonceAccount", - "printedName": "withdrawNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "advanceNonceAccount", - "printedName": "advanceNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", @@ -293000,8 +295615,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -293031,8 +295646,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -293056,20 +295671,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293091,8 +295706,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293110,8 +295725,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293121,8 +295736,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -293175,13 +295790,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "TW_Solana_Proto_SigningOutput", + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "TW_Solana_Proto_TokenTransfer", "children": [ { "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", "children": [ { "kind": "TypeNominal", @@ -293191,8 +295806,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293215,8 +295830,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293239,8 +295854,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293257,8 +295872,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293267,19 +295882,19 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "senderTokenAddress", + "printedName": "senderTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293296,14 +295911,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293320,14 +295935,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293344,8 +295959,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293354,8 +295969,8 @@ }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "recipientTokenAddress", + "printedName": "recipientTokenAddress", "children": [ { "kind": "TypeNominal", @@ -293365,8 +295980,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293389,8 +296004,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293413,8 +296028,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293431,8 +296046,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293441,8 +296056,182 @@ }, { "kind": "Var", - "name": "unsignedTx", - "printedName": "unsignedTx", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decimals", + "printedName": "decimals", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -293452,8 +296241,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293476,8 +296265,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293500,8 +296289,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293518,8 +296307,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293539,8 +296439,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293562,8 +296462,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293586,8 +296486,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293604,8 +296504,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293619,14 +296519,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -293646,8 +296546,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293672,8 +296572,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -293695,8 +296595,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293721,8 +296621,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -293749,8 +296649,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -293780,8 +296680,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -293805,20 +296705,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293840,8 +296740,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293859,8 +296759,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293870,8 +296770,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -293924,32 +296824,111 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "TW_Solana_Proto_PreSigningOutput", + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "TW_Solana_Proto_CreateAndTransferToken", "children": [ { "kind": "Var", - "name": "signers", - "printedName": "signers", + "name": "recipientMainAddress", + "printedName": "recipientMainAddress", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293966,22 +296945,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293998,22 +296969,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294030,8 +296993,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294040,19 +297003,19 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "recipientTokenAddress", + "printedName": "recipientTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294069,14 +297032,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294093,14 +297056,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294117,8 +297080,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294127,19 +297090,19 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "senderTokenAddress", + "printedName": "senderTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294156,14 +297119,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294180,14 +297143,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294204,8 +297167,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294214,8 +297177,182 @@ }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decimals", + "printedName": "decimals", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -294225,8 +297362,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294249,8 +297386,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294273,8 +297410,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294291,8 +297428,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294312,8 +297560,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294335,8 +297583,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294359,8 +297607,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294377,8 +297625,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294392,14 +297640,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -294419,8 +297667,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294445,8 +297693,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -294468,8 +297716,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294494,8 +297742,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -294522,8 +297770,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -294553,8 +297801,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -294578,20 +297826,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294613,8 +297861,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -294632,8 +297880,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -294643,8 +297891,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -294695,25 +297943,15 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SolanaAddress", - "printedName": "SolanaAddress", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "TW_Solana_Proto_CreateNonceAccount", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -294723,14 +297961,16 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -294745,386 +297985,313 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.SolanaAddress?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SolanaAddress", - "printedName": "WalletCore.SolanaAddress", - "usr": "s:10WalletCore13SolanaAddressC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rent", + "printedName": "rent", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SolanaAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "defaultTokenAddress", - "printedName": "defaultTokenAddress(tokenMintAddress:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", - "mangledName": "$s10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore13SolanaAddressC", - "mangledName": "$s10WalletCore13SolanaAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + ] }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StarkExMessageSigner", - "printedName": "StarkExMessageSigner", - "children": [ - { - "kind": "Function", - "name": "signMessage", - "printedName": "signMessage(privateKey:message:)", + "kind": "Var", + "name": "nonceAccountPrivateKey", + "printedName": "nonceAccountPrivateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Func", - "usr": "s:10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", - "mangledName": "$s10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyMessage", - "printedName": "verifyMessage(pubKey:message:signature:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", - "mangledName": "$s10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore20StarkExMessageSignerV", - "mangledName": "$s10WalletCore20StarkExMessageSignerV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StarkWare", - "printedName": "StarkWare", - "children": [ - { - "kind": "Function", - "name": "getStarkKeyFromSignature", - "printedName": "getStarkKeyFromSignature(derivationPath:signature:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "DerivationPath", - "printedName": "WalletCore.DerivationPath", - "usr": "s:10WalletCore14DerivationPathC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", - "mangledName": "$s10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore9StarkWareV", - "mangledName": "$s10WalletCore9StarkWareV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "TW_Stellar_Proto_ClaimPredicate", - "children": [ - { - "kind": "Var", - "name": "predicateUnconditional", - "printedName": "predicateUnconditional", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "UNRECOGNIZED", - "printedName": "UNRECOGNIZED", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> (Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" ] }, { @@ -295134,49 +298301,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate?", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -295185,23 +298317,29 @@ }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -295210,51 +298348,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -295264,109 +298397,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -295375,16 +298535,15 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, "isFromExtension": true, "accessorKind": "get" @@ -295392,43 +298551,41 @@ ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "declKind": "Struct", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Enum", - "printedName": "Enum", - "usr": "s:13SwiftProtobuf4EnumP", - "mangledName": "$s13SwiftProtobuf4EnumP" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -295443,55 +298600,18 @@ "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" } ] }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_Asset", - "printedName": "TW_Stellar_Proto_Asset", + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "TW_Solana_Proto_WithdrawNonceAccount", "children": [ { "kind": "Var", - "name": "issuer", - "printedName": "issuer", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -295501,8 +298621,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -295525,8 +298645,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295549,8 +298669,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295567,8 +298687,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295577,8 +298697,8 @@ }, { "kind": "Var", - "name": "alphanum4", - "printedName": "alphanum4", + "name": "recipient", + "printedName": "recipient", "children": [ { "kind": "TypeNominal", @@ -295588,14 +298708,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -295612,8 +298731,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295636,8 +298755,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295654,8 +298773,94 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295675,8 +298880,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -295698,8 +298903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295722,8 +298927,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295740,8 +298945,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295755,14 +298960,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetVACycfc", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -295782,8 +298987,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295808,8 +299013,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -295831,8 +299036,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295857,8 +299062,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -295885,8 +299090,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -295916,8 +299121,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -295941,20 +299146,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295976,8 +299181,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -295995,8 +299200,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296006,12 +299211,11 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -296060,13 +299264,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "TW_Stellar_Proto_OperationCreateAccount", + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "TW_Solana_Proto_AdvanceNonceAccount", "children": [ { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -296076,8 +299280,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296100,8 +299304,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296124,95 +299328,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296229,8 +299346,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296250,8 +299367,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296273,8 +299390,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296297,8 +299414,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296315,8 +299432,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296330,14 +299447,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -296357,8 +299474,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296383,8 +299500,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -296406,8 +299523,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296432,8 +299549,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -296460,8 +299577,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -296491,8 +299608,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -296516,20 +299633,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296551,8 +299668,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296570,8 +299687,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296581,12 +299698,11 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -296635,24 +299751,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "TW_Stellar_Proto_OperationPayment", + "name": "TW_Solana_Proto_SigningInput", + "printedName": "TW_Solana_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296669,14 +299785,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296693,14 +299809,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296717,8 +299833,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296727,24 +299843,27 @@ }, { "kind": "Var", - "name": "asset", - "printedName": "asset", + "name": "recentBlockhash", + "printedName": "recentBlockhash", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296753,15 +299872,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -296776,15 +299896,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -296799,8 +299920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296809,8 +299930,8 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", + "name": "v0Msg", + "printedName": "v0Msg", "children": [ { "kind": "TypeNominal", @@ -296820,13 +299941,15 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296841,50 +299964,79 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" + ] }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "transactionType", + "printedName": "transactionType", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296901,14 +300053,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296925,14 +300085,22 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296949,8 +300117,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296959,26 +300127,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "transferTransaction", + "printedName": "transferTransaction", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296987,16 +300152,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297011,16 +300175,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297035,60 +300198,33 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "delegateStakeTransaction", + "printedName": "delegateStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297097,47 +300233,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "deactivateStakeTransaction", + "printedName": "deactivateStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297146,136 +300314,160 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "deactivateAllStakeTransaction", + "printedName": "deactivateAllStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" } ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "withdrawTransaction", + "printedName": "withdrawTransaction", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -297284,99 +300476,78 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "TW_Stellar_Proto_OperationChangeTrust", - "children": [ { "kind": "Var", - "name": "asset", - "printedName": "asset", + "name": "withdrawAllTransaction", + "printedName": "withdrawAllTransaction", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -297386,14 +300557,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -297409,14 +300580,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -297432,8 +300603,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -297442,23 +300613,22 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", + "name": "createTokenAccountTransaction", + "printedName": "createTokenAccountTransaction", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -297468,64 +300638,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", "moduleName": "WalletCore", "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" + ] }, { "kind": "Var", - "name": "validBefore", - "printedName": "validBefore", + "name": "tokenTransferTransaction", + "printedName": "tokenTransferTransaction", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297534,16 +300719,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297558,16 +300742,15 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297582,8 +300765,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -297592,26 +300775,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "createAndTransferTokenTransaction", + "printedName": "createAndTransferTokenTransaction", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297620,16 +300800,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297644,16 +300823,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297668,60 +300846,33 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "createNonceAccount", + "printedName": "createNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297730,47 +300881,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "withdrawNonceAccount", + "printedName": "withdrawNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297779,259 +300962,15 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "TW_Stellar_Proto_Claimant", - "children": [ - { - "kind": "Var", - "name": "account", - "printedName": "account", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -298046,16 +300985,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -298070,8 +301008,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298080,27 +301018,23 @@ }, { "kind": "Var", - "name": "predicate", - "printedName": "predicate", + "name": "advanceNonceAccount", + "printedName": "advanceNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -298109,16 +301043,15 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -298133,16 +301066,15 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -298157,8 +301089,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298167,24 +301099,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "sender", + "printedName": "sender", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -298195,14 +301128,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298219,14 +301152,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298243,39 +301176,18 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -298285,17 +301197,15 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -298311,298 +301221,10 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "children": [ - { - "kind": "Var", - "name": "asset", - "printedName": "asset", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", - "moduleName": "WalletCore", "accessorKind": "get" }, { @@ -298617,15 +301239,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -298640,8 +301263,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298650,82 +301273,19 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "feePayerPrivateKey", + "printedName": "feePayerPrivateKey", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298742,14 +301302,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298766,14 +301326,14 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298790,8 +301350,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298800,27 +301360,19 @@ }, { "kind": "Var", - "name": "claimants", - "printedName": "claimants", + "name": "feePayer", + "printedName": "feePayer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298837,22 +301389,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298869,22 +301413,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298901,8 +301437,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298922,8 +301458,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298945,8 +301481,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298969,8 +301505,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298987,8 +301523,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298996,490 +301532,658 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeDecl", + "name": "OneOf_TransactionType", + "printedName": "OneOf_TransactionType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "transferTransaction", + "printedName": "transferTransaction", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "delegateStakeTransaction", + "printedName": "delegateStakeTransaction", "children": [ { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "deactivateStakeTransaction", + "printedName": "deactivateStakeTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "deactivateAllStakeTransaction", + "printedName": "deactivateAllStakeTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "kind": "Var", + "name": "withdrawTransaction", + "printedName": "withdrawTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "withdrawAllTransaction", + "printedName": "withdrawAllTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "children": [ - { - "kind": "Var", - "name": "balanceID", - "printedName": "balanceID", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "createTokenAccountTransaction", + "printedName": "createTokenAccountTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "tokenTransferTransaction", + "printedName": "tokenTransferTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "createAndTransferTokenTransaction", + "printedName": "createAndTransferTokenTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "createNonceAccount", + "printedName": "createNonceAccount", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "withdrawNonceAccount", + "printedName": "withdrawNonceAccount", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "advanceNonceAccount", + "printedName": "advanceNonceAccount", + "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Func", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, @@ -299490,14 +302194,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -299517,8 +302221,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299543,8 +302247,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -299566,8 +302270,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299592,8 +302296,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -299620,8 +302324,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -299651,8 +302355,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -299676,20 +302380,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299711,8 +302415,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -299730,8 +302434,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -299741,8 +302445,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -299795,24 +302499,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "TW_Stellar_Proto_MemoVoid", + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "TW_Solana_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -299829,14 +302533,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -299853,14 +302557,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -299877,59 +302581,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -299939,46 +302620,84 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -299988,222 +302707,66 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "TW_Stellar_Proto_MemoText", - "children": [ { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "unsignedTx", + "printedName": "unsignedTx", "children": [ { "kind": "TypeNominal", @@ -300213,8 +302776,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300237,8 +302800,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300261,8 +302824,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300279,8 +302842,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300300,8 +302863,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300323,8 +302886,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300347,8 +302910,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300365,8 +302928,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300380,14 +302943,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -300407,8 +302970,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300433,8 +302996,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -300456,8 +303019,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300482,8 +303045,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -300510,8 +303073,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -300541,8 +303104,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -300566,20 +303129,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300601,8 +303164,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -300620,8 +303183,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -300631,8 +303194,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -300685,24 +303248,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "TW_Stellar_Proto_MemoId", + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "TW_Solana_Proto_PreSigningOutput", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "signers", + "printedName": "signers", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300719,14 +303290,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300743,14 +303322,22 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300767,8 +303354,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300777,24 +303364,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -300805,14 +303393,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300829,14 +303417,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300853,59 +303441,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -300915,282 +303480,77 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "TW_Stellar_Proto_MemoHash", - "children": [ { "kind": "Var", - "name": "hash", - "printedName": "hash", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -301207,14 +303567,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -301231,14 +303591,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -301255,8 +303615,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -301276,8 +303636,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -301299,8 +303659,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -301323,8 +303683,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -301341,8 +303701,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -301356,14 +303716,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -301383,8 +303743,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301409,8 +303769,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -301432,8 +303792,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301458,8 +303818,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -301486,8 +303846,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -301517,8 +303877,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -301542,20 +303902,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301577,8 +303937,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -301596,8 +303956,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -301607,8 +303967,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -301659,34 +304019,42 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "TW_Stellar_Proto_SigningInput", + "name": "SolanaAddress", + "printedName": "SolanaAddress", "children": [ { "kind": "Var", - "name": "fee", - "printedName": "fee", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", + "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -301695,154 +304063,195 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", + "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.SolanaAddress?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SolanaAddress", + "printedName": "WalletCore.SolanaAddress", + "usr": "s:10WalletCore13SolanaAddressC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "sequence", - "printedName": "sequence", + "kind": "Function", + "name": "defaultTokenAddress", + "printedName": "defaultTokenAddress(tokenMintAddress:)", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", + "declKind": "Func", + "usr": "s:10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", + "mangledName": "$s10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore13SolanaAddressC", + "mangledName": "$s10WalletCore13SolanaAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StarkExMessageSigner", + "printedName": "StarkExMessageSigner", + "children": [ + { + "kind": "Function", + "name": "signMessage", + "printedName": "signMessage(privateKey:message:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "mangledName": "$s10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "account", - "printedName": "account", + "kind": "Function", + "name": "verifyMessage", + "printedName": "verifyMessage(pubKey:message:signature:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "String", @@ -301850,191 +304259,273 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", + "declKind": "Func", + "usr": "s:10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", + "mangledName": "$s10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore20StarkExMessageSignerV", + "mangledName": "$s10WalletCore20StarkExMessageSignerV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StarkWare", + "printedName": "StarkWare", + "children": [ + { + "kind": "Function", + "name": "getStarkKeyFromSignature", + "printedName": "getStarkKeyFromSignature(derivationPath:signature:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "DerivationPath", + "printedName": "WalletCore.DerivationPath", + "usr": "s:10WalletCore14DerivationPathC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", + "mangledName": "$s10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore9StarkWareV", + "mangledName": "$s10WalletCore9StarkWareV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SwiftProtobuf", + "printedName": "SwiftProtobuf", + "declKind": "Import", + "moduleName": "WalletCore" + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "TW_Stellar_Proto_ClaimPredicate", + "children": [ + { + "kind": "Var", + "name": "predicateUnconditional", + "printedName": "predicateUnconditional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> (Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { "kind": "Var", - "name": "passphrase", - "printedName": "passphrase", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302043,92 +304534,51 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "operationOneof", - "printedName": "operationOneof", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", "RawDocComment" ], + "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -302138,24 +304588,26 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" }, { @@ -302170,24 +304622,26 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "set" }, { @@ -302202,33 +304656,41 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "opCreateAccount", - "printedName": "opCreateAccount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302237,79 +304699,142 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:13SwiftProtobuf4EnumP", + "mangledName": "$s13SwiftProtobuf4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_Asset", + "printedName": "TW_Stellar_Proto_Asset", + "children": [ { "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", + "name": "issuer", + "printedName": "issuer", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302318,15 +304843,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302341,15 +304867,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302364,8 +304891,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302374,23 +304901,27 @@ }, { "kind": "Var", - "name": "opChangeTrust", - "printedName": "opChangeTrust", + "name": "alphanum4", + "printedName": "alphanum4", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302399,15 +304930,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302422,15 +304954,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302445,8 +304978,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302455,23 +304988,26 @@ }, { "kind": "Var", - "name": "opCreateClaimableBalance", - "printedName": "opCreateClaimableBalance", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302480,15 +305016,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302503,15 +305040,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302526,33 +305064,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "opClaimClaimableBalance", - "printedName": "opClaimClaimableBalance", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302561,83 +305126,282 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "TW_Stellar_Proto_OperationCreateAccount", + "children": [ { "kind": "Var", - "name": "memoTypeOneof", - "printedName": "memoTypeOneof", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -302654,22 +305418,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -302686,22 +305442,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -302718,8 +305466,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302728,23 +305476,27 @@ }, { "kind": "Var", - "name": "memoVoid", - "printedName": "memoVoid", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302753,15 +305505,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302776,15 +305529,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302799,8 +305553,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302809,23 +305563,26 @@ }, { "kind": "Var", - "name": "memoText", - "printedName": "memoText", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302834,15 +305591,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302857,15 +305615,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302880,33 +305639,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "memoID", - "printedName": "memoID", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302915,79 +305701,290 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "TW_Stellar_Proto_OperationPayment", + "children": [ { "kind": "Var", - "name": "memoHash", - "printedName": "memoHash", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302996,15 +305993,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -303019,15 +306017,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -303042,8 +306041,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303052,22 +306051,23 @@ }, { "kind": "Var", - "name": "memoReturnHash", - "printedName": "memoReturnHash", + "name": "asset", + "printedName": "asset", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -303077,14 +306077,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -303100,14 +306100,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -303123,8 +306123,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303133,8 +306133,71 @@ }, { "kind": "Var", - "name": "timeBounds", - "printedName": "timeBounds", + "name": "hasAsset", + "printedName": "hasAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", @@ -303144,13 +306207,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -303167,8 +306231,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -303191,8 +306255,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -303209,8 +306273,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303230,8 +306294,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -303253,8 +306317,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -303277,8 +306341,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -303295,8 +306359,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303304,717 +306368,105 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_OperationOneof", - "printedName": "OneOf_OperationOneof", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "opCreateAccount", - "printedName": "opCreateAccount", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opChangeTrust", - "printedName": "opChangeTrust", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opCreateClaimableBalance", - "printedName": "opCreateClaimableBalance", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opClaimClaimableBalance", - "printedName": "opClaimClaimableBalance", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MemoTypeOneof", - "printedName": "OneOf_MemoTypeOneof", - "children": [ - { - "kind": "Var", - "name": "memoVoid", - "printedName": "memoVoid", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoText", - "printedName": "memoText", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoID", - "printedName": "memoID", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoHash", - "printedName": "memoHash", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoReturnHash", - "printedName": "memoReturnHash", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -304024,8 +306476,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304052,8 +306504,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -304083,8 +306535,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -304108,20 +306560,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304143,8 +306595,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304162,8 +306614,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304173,8 +306625,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -304227,32 +306679,29 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "TW_Stellar_Proto_SigningOutput", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "TW_Stellar_Proto_OperationChangeTrust", "children": [ { "kind": "Var", - "name": "signature", - "printedName": "signature", + "name": "asset", + "printedName": "asset", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -304261,16 +306710,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -304285,16 +306733,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -304309,8 +306756,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304319,27 +306766,24 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "hasAsset", + "printedName": "hasAsset", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -304348,77 +306792,56 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "validBefore", + "printedName": "validBefore", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -304435,14 +306858,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -304459,14 +306882,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -304483,8 +306906,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304504,8 +306927,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -304527,8 +306950,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -304551,8 +306974,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -304569,8 +306992,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304584,14 +307007,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -304611,8 +307034,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304637,8 +307060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304660,8 +307083,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304686,8 +307109,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304714,8 +307137,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -304745,8 +307168,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -304770,20 +307193,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304805,8 +307228,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304824,8 +307247,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304835,8 +307258,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -304889,244 +307312,315 @@ }, { "kind": "TypeDecl", - "name": "StellarMemoType", - "printedName": "StellarMemoType", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "TW_Stellar_Proto_Claimant", "children": [ { "kind": "Var", - "name": "none", - "printedName": "none", + "name": "account", + "printedName": "account", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4noneyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4noneyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "predicate", + "printedName": "predicate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4textyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4textyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "id", - "printedName": "id", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO2idyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO2idyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "hash", - "printedName": "hash", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4hashyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4hashyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "return", - "printedName": "return", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO6returnyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO6returnyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarMemoType?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305135,46 +307629,185 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", + "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -305183,46 +307816,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore15StellarMemoTypeO", - "mangledName": "$s10WalletCore15StellarMemoTypeO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -305233,155 +307878,119 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "StellarPassphrase", - "printedName": "StellarPassphrase", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "TW_Stellar_Proto_OperationCreateClaimableBalance", "children": [ { "kind": "Var", - "name": "stellar", - "printedName": "stellar", + "name": "asset", + "printedName": "asset", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarPassphrase.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ] + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore17StellarPassphraseO7stellaryA2CmF", - "mangledName": "$s10WalletCore17StellarPassphraseO7stellaryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "kin", - "printedName": "kin", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarPassphrase.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ] + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore17StellarPassphraseO3kinyA2CmF", - "mangledName": "$s10WalletCore17StellarPassphraseO3kinyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hasAsset", + "printedName": "hasAsset", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvp", - "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -305391,69 +308000,64 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvg", - "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", "moduleName": "WalletCore", "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarPassphrase?", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "declKind": "Func", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305462,46 +308066,93 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "claimants", + "printedName": "claimants", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305511,317 +308162,209 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", "moduleName": "WalletCore", - "static": true, "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore17StellarPassphraseO", - "mangledName": "$s10WalletCore17StellarPassphraseO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StellarVersionByte", - "printedName": "StellarVersionByte", - "children": [ - { - "kind": "Var", - "name": "accountID", - "printedName": "accountID", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO9accountIDyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO9accountIDyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "seed", - "printedName": "seed", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO4seedyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO4seedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "preAuthTX", - "printedName": "preAuthTX", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "sha256Hash", - "printedName": "sha256Hash", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO10sha256HashyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO10sha256HashyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarVersionByte?", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305830,46 +308373,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305878,517 +308422,327 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore18StellarVersionByteO", - "mangledName": "$s10WalletCore18StellarVersionByteO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt16", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StoredKey", - "printedName": "StoredKey", - "children": [ { "kind": "Function", - "name": "load", - "printedName": "load(path:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", - "mangledName": "$s10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Mutating", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "importPrivateKey", - "printedName": "importPrivateKey(privateKey:name:password:coin:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", - "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "importPrivateKeyWithEncryption", - "printedName": "importPrivateKeyWithEncryption(privateKey:name:password:coin:encryption:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" }, { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", - "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "importHDWallet", - "printedName": "importHDWallet(mnemonic:name:password:coin:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", - "mangledName": "$s10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "importHDWalletWithEncryption", - "printedName": "importHDWalletWithEncryption(mnemonic:name:password:coin:encryption:)", - "children": [ + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "children": [ + { + "kind": "Var", + "name": "balanceID", + "printedName": "balanceID", + "children": [ { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", - "mangledName": "$s10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "declKind": "Var", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "importJSON", - "printedName": "importJSON(json:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", - "mangledName": "$s10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "identifier", - "printedName": "identifier", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvp", - "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvg", - "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC4nameSSvp", - "mangledName": "$s10WalletCore9StoredKeyC4nameSSvp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306397,43 +308751,108 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC4nameSSvg", - "mangledName": "$s10WalletCore9StoredKeyC4nameSSvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isMnemonic", - "printedName": "isMnemonic", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvp", - "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306442,43 +308861,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvg", - "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "accountCount", - "printedName": "accountCount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC12accountCountSivp", - "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306487,476 +308910,331 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC12accountCountSivg", - "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "encryptionParameters", - "printedName": "encryptionParameters", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvp", - "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvg", - "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryptionLevel:)", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ + "Mutating", "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryptionLevel:encryption:)", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryption:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "declKind": "Var", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "account", - "printedName": "account(index:)", - "children": [ + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "TW_Stellar_Proto_MemoVoid", + "children": [ + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", - "mangledName": "$s10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "accountForCoin", - "printedName": "accountForCoin(coin:wallet:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", - "mangledName": "$s10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "accountForCoinDerivation", - "printedName": "accountForCoinDerivation(coin:derivation:wallet:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", - "mangledName": "$s10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addAccountDerivation", - "printedName": "addAccountDerivation(address:coin:derivation:derivationPath:publicKey:extendedPublicKey:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", - "mangledName": "$s10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "addAccount", - "printedName": "addAccount(address:coin:derivationPath:publicKey:extendedPublicKey:)", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "String", @@ -306964,49 +309242,96 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", - "mangledName": "$s10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "removeAccountForCoin", - "printedName": "removeAccountForCoin(coin:)", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", - "mangledName": "$s10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "removeAccountForCoinDerivation", - "printedName": "removeAccountForCoinDerivation(coin:derivation:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -307015,32 +309340,29 @@ }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", - "mangledName": "$s10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Mutating", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "removeAccountForCoinDerivationPath", - "printedName": "removeAccountForCoinDerivationPath(coin:derivationPath:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -307049,32 +309371,28 @@ }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", - "mangledName": "$s10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "store", - "printedName": "store(path:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", @@ -307084,68 +309402,156 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC5store4pathSbSS_tF", - "mangledName": "$s10WalletCore9StoredKeyC5store4pathSbSS_tF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "decryptPrivateKey", - "printedName": "decryptPrivateKey(password:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "TW_Stellar_Proto_MemoText", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptMnemonic", - "printedName": "decryptMnemonic(password:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -307154,348 +309560,189 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "privateKey", - "printedName": "privateKey(coin:password:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", - "mangledName": "$s10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "wallet", - "printedName": "wallet(password:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "exportJSON", - "printedName": "exportJSON()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", - "mangledName": "$s10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fixAddresses", - "printedName": "fixAddresses(password:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore9StoredKeyC", - "mangledName": "$s10WalletCore9StoredKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "StoredKeyEncryption", - "printedName": "StoredKeyEncryption", - "children": [ - { - "kind": "Var", - "name": "aes128Ctr", - "printedName": "aes128Ctr", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "aes128Cbc", - "printedName": "aes128Cbc", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", - "moduleName": "WalletCore" + ] }, { - "kind": "Var", - "name": "aes192Ctr", - "printedName": "aes192Ctr", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "aes256Ctr", - "printedName": "aes256Ctr", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] - } + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", - "moduleName": "WalletCore" + "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -307504,79 +309751,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKeyEncryption?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -307585,359 +309800,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore19StoredKeyEncryptionO", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StoredKeyEncryptionLevel", - "printedName": "StoredKeyEncryptionLevel", - "children": [ - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", - "moduleName": "WalletCore" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Var", - "name": "minimal", - "printedName": "minimal", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "weak", - "printedName": "weak", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "standard", - "printedName": "standard", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", - "moduleName": "WalletCore" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKeyEncryptionLevel?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -307946,46 +309938,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -307996,182 +310000,33 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Era", - "printedName": "TW_Substrate_Proto_Era", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "TW_Stellar_Proto_MemoId", "children": [ { "kind": "Var", - "name": "blockNumber", - "printedName": "blockNumber", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64VvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "period", - "printedName": "period", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308188,14 +310043,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308212,14 +310067,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvs", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308236,8 +310091,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64VvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64VvM", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308257,8 +310112,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308280,8 +310135,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308304,8 +310159,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308322,8 +310177,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308337,14 +310192,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraVACycfc", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraVACycfc", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -308364,8 +310219,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308390,8 +310245,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -308413,8 +310268,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308439,8 +310294,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -308467,8 +310322,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -308498,8 +310353,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -308523,20 +310378,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308558,8 +310413,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV9hashValueSivp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV9hashValueSivp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -308577,8 +310432,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV9hashValueSivg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV9hashValueSivg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -308588,11 +310443,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -308641,32 +310497,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Balance", - "printedName": "TW_Substrate_Proto_Balance", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "TW_Stellar_Proto_MemoHash", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "hash", + "printedName": "hash", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308683,22 +310531,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308715,22 +310555,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308747,8 +310579,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308757,23 +310589,26 @@ }, { "kind": "Var", - "name": "transfer", - "printedName": "transfer", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308782,15 +310617,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -308805,15 +310641,16 @@ }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -308828,33 +310665,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308863,79 +310727,290 @@ "children": [ { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "TW_Stellar_Proto_SigningInput", + "children": [ { "kind": "Var", - "name": "assetTransfer", - "printedName": "assetTransfer", + "name": "fee", + "printedName": "fee", "children": [ { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308944,15 +311019,16 @@ "children": [ { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -308967,15 +311043,16 @@ }, { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -308990,8 +311067,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309000,23 +311077,27 @@ }, { "kind": "Var", - "name": "batchAssetTransfer", - "printedName": "batchAssetTransfer", + "name": "sequence", + "printedName": "sequence", "children": [ { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -309025,15 +311106,16 @@ "children": [ { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -309048,15 +311130,16 @@ }, { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -309071,8 +311154,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309081,24 +311164,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "account", + "printedName": "account", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -309109,14 +311193,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -309133,14 +311217,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -309157,8 +311241,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309166,528 +311250,33 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Var", + "name": "privateKey", + "printedName": "privateKey", "children": [ { - "kind": "Var", - "name": "transfer", - "printedName": "transfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.Transfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.Transfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "assetTransfer", - "printedName": "assetTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "batchAssetTransfer", - "printedName": "batchAssetTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Enum", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Transfer", - "printedName": "Transfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -309696,5561 +311285,110 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "memo", - "printedName": "memo", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchTransfer", - "printedName": "BatchTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AssetTransfer", - "printedName": "AssetTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "value", - "printedName": "value", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "assetID", - "printedName": "assetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "feeAssetID", - "printedName": "feeAssetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchAssetTransfer", - "printedName": "BatchAssetTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "feeAssetID", - "printedName": "feeAssetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceVACycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "TW_Substrate_Proto_Authorization", - "children": [ - { - "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "joinIdentity", - "printedName": "joinIdentity", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "joinIdentity", - "printedName": "joinIdentity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO12joinIdentityyAeC04JoinL0VcAEmF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO12joinIdentityyAeC04JoinL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "JoinIdentity", - "printedName": "JoinIdentity", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "target", - "printedName": "target", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasData", - "printedName": "hasData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearData", - "printedName": "clearData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9clearDatayyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9clearDatayyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "expiry", - "printedName": "expiry", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DataMessage", - "printedName": "DataMessage", - "children": [ - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageVAGycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageVAGycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV2eeoiySbAG_AGtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV2eeoiySbAG_AGtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AuthData", - "printedName": "AuthData", - "children": [ - { - "kind": "Var", - "name": "asset", - "printedName": "asset", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV10clearAssetyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "extrinsic", - "printedName": "extrinsic", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasExtrinsic", - "printedName": "hasExtrinsic", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearExtrinsic", - "printedName": "clearExtrinsic()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearExtrinsicyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearExtrinsicyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "portfolio", - "printedName": "portfolio", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasPortfolio", - "printedName": "hasPortfolio", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearPortfolio", - "printedName": "clearPortfolio()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearPortfolioyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearPortfolioyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataVAGycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataVAGycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV2eeoiySbAG_AGtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV2eeoiySbAG_AGtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityVAEycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "passphrase", + "printedName": "passphrase", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "init_kind": "Designated" + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -315258,127 +311396,186 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "operationOneof", + "printedName": "operationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opCreateAccount", + "printedName": "opCreateAccount", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessorKind": "get" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -315387,198 +311584,391 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opChangeTrust", + "printedName": "opChangeTrust", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opCreateClaimableBalance", + "printedName": "opCreateClaimableBalance", + "children": [ { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "opClaimClaimableBalance", + "printedName": "opClaimClaimableBalance", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationVACycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationVACycfc", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "memoTypeOneof", + "printedName": "memoTypeOneof", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -315588,47 +311978,97 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "memoVoid", + "printedName": "memoVoid", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315637,136 +312077,241 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Var", + "name": "memoText", + "printedName": "memoText", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", "declAttributes": [ - "Mutating", "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "memoID", + "printedName": "memoID", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "memoHash", + "printedName": "memoHash", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -315775,110 +312320,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Identity", - "printedName": "TW_Substrate_Proto_Identity", - "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "memoReturnHash", + "printedName": "memoReturnHash", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315887,24 +312401,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -315919,24 +312424,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -315951,8 +312447,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -315961,23 +312457,26 @@ }, { "kind": "Var", - "name": "joinIdentityAsKey", - "printedName": "joinIdentityAsKey", + "name": "timeBounds", + "printedName": "timeBounds", "children": [ { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315986,15 +312485,16 @@ "children": [ { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -316009,15 +312509,16 @@ }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -316032,8 +312533,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -316053,8 +312554,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -316076,8 +312577,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -316100,8 +312601,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -316118,8 +312619,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -316128,48 +312629,248 @@ }, { "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "name": "OneOf_OperationOneof", + "printedName": "OneOf_OperationOneof", "children": [ { "kind": "Var", - "name": "joinIdentityAsKey", - "printedName": "joinIdentityAsKey", + "name": "opCreateAccount", + "printedName": "opCreateAccount", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof.Type", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opChangeTrust", + "printedName": "opChangeTrust", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opCreateClaimableBalance", + "printedName": "opCreateClaimableBalance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opClaimClaimableBalance", + "printedName": "opClaimClaimableBalance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ] } @@ -316177,8 +312878,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", "moduleName": "WalletCore" }, { @@ -316194,20 +312895,20 @@ }, { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" }, { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -316215,11 +312916,12 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -316233,533 +312935,258 @@ }, { "kind": "TypeDecl", - "name": "JoinIdentityAsKey", - "printedName": "JoinIdentityAsKey", + "name": "OneOf_MemoTypeOneof", + "printedName": "OneOf_MemoTypeOneof", "children": [ { "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", + "name": "memoVoid", + "printedName": "memoVoid", "children": [ { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + } + ] }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "authID", - "printedName": "authID", + "name": "memoText", + "printedName": "memoText", "children": [ { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ] }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "memoID", + "printedName": "memoID", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ] }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyVAEycfc", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "memoHash", + "printedName": "memoHash", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ] + }, { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "memoReturnHash", + "printedName": "memoReturnHash", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Function", @@ -316774,113 +313201,35 @@ }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", - "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV", + "declKind": "Enum", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, { "kind": "Conformance", "name": "Equatable", @@ -316897,14 +313246,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityVACycfc", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityVACycfc", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -316924,8 +313273,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -316950,8 +313299,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -316973,8 +313322,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -316999,8 +313348,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317027,8 +313376,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -317058,8 +313407,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -317083,20 +313432,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317118,8 +313467,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317137,8 +313486,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317148,11 +313497,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -317201,32 +313551,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "TW_Substrate_Proto_PolymeshCall", + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "TW_Stellar_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "signature", + "printedName": "signature", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -317243,22 +313585,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -317275,22 +313609,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -317307,8 +313633,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317317,23 +313643,27 @@ }, { "kind": "Var", - "name": "authorizationCall", - "printedName": "authorizationCall", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -317342,15 +313672,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -317365,15 +313696,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -317388,8 +313720,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317398,23 +313730,27 @@ }, { "kind": "Var", - "name": "identityCall", - "printedName": "identityCall", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -317423,15 +313759,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -317446,15 +313783,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -317469,8 +313807,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317490,8 +313828,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -317513,8 +313851,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -317537,8 +313875,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -317555,169 +313893,14 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "authorizationCall", - "printedName": "authorizationCall", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Authorization) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO013authorizationG0yAeA0c1_d1_E14_AuthorizationVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO013authorizationG0yAeA0c1_d1_E14_AuthorizationVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "identityCall", - "printedName": "identityCall", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Identity) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, { "kind": "Constructor", "name": "init", @@ -317725,14 +313908,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallVACycfc", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallVACycfc", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -317752,8 +313935,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317778,8 +313961,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317801,8 +313984,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317827,8 +314010,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317855,8 +314038,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -317886,8 +314069,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -317911,20 +314094,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317946,8 +314129,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317965,8 +314148,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317976,11 +314159,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -318029,110 +314213,292 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "TW_Substrate_Proto_SigningInput", + "name": "StellarMemoType", + "printedName": "StellarMemoType", "children": [ { "kind": "Var", - "name": "blockHash", - "printedName": "blockHash", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4noneyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4noneyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4textyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4textyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO2idyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO2idyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4hashyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4hashyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "return", + "printedName": "return", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO6returnyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO6returnyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarMemoType?", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "moduleName": "WalletCore", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "genesisHash", - "printedName": "genesisHash", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvp", + "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318141,79 +314507,205 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore15StellarMemoTypeO", + "mangledName": "$s10WalletCore15StellarMemoTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StellarPassphrase", + "printedName": "StellarPassphrase", + "children": [ + { + "kind": "Var", + "name": "stellar", + "printedName": "stellar", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarPassphrase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore17StellarPassphraseO7stellaryA2CmF", + "mangledName": "$s10WalletCore17StellarPassphraseO7stellaryA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "kin", + "printedName": "kin", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarPassphrase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore17StellarPassphraseO3kinyA2CmF", + "mangledName": "$s10WalletCore17StellarPassphraseO3kinyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "nonce", - "printedName": "nonce", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvp", + "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvp", + "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -318223,64 +314715,56 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvg", + "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvg", + "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvg", "moduleName": "WalletCore", "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarPassphrase?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "specVersion", - "printedName": "specVersion", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -318290,12 +314774,10 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvp", + "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318310,73 +314792,40 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32VvM", + "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "transactionVersion", - "printedName": "transactionVersion", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318385,162 +314834,318 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvg", + "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore17StellarPassphraseO", + "mangledName": "$s10WalletCore17StellarPassphraseO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UInt32", "printedName": "Swift.UInt32", "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StellarVersionByte", + "printedName": "StellarVersionByte", + "children": [ { "kind": "Var", - "name": "tip", - "printedName": "tip", + "name": "accountID", + "printedName": "accountID", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO9accountIDyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO9accountIDyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "seed", + "printedName": "seed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] + } + ] + } ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO4seedyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO4seedyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "preAuthTX", + "printedName": "preAuthTX", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "sha256Hash", + "printedName": "sha256Hash", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO10sha256HashyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO10sha256HashyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarVersionByte?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "era", - "printedName": "era", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", + "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318549,311 +315154,511 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore18StellarVersionByteO", + "mangledName": "$s10WalletCore18StellarVersionByteO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "hasEra", - "printedName": "hasEra", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" + ] } - ] - }, + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StoredKey", + "printedName": "StoredKey", + "children": [ { "kind": "Function", - "name": "clearEra", - "printedName": "clearEra()", + "name": "load", + "printedName": "load(path:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "WalletCore.StoredKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV8clearErayyF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV8clearErayyF", + "usr": "s:10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", + "mangledName": "$s10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Mutating", + "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "kind": "Function", + "name": "importPrivateKey", + "printedName": "importPrivateKey(privateKey:name:password:coin:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", + "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importPrivateKeyWithEncryption", + "printedName": "importPrivateKeyWithEncryption(privateKey:name:password:coin:encryption:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", + "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importHDWallet", + "printedName": "importHDWallet(mnemonic:name:password:coin:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "mangledName": "$s10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importHDWalletWithEncryption", + "printedName": "importHDWalletWithEncryption(mnemonic:name:password:coin:encryption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "mangledName": "$s10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importJSON", + "printedName": "importJSON(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", + "mangledName": "$s10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "identifier", + "printedName": "identifier", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", + "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvp", + "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -318864,93 +315669,49 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvg", + "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", + "usr": "s:10WalletCore9StoredKeyC4nameSSvp", + "mangledName": "$s10WalletCore9StoredKeyC4nameSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -318960,64 +315721,26 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "usr": "s:10WalletCore9StoredKeyC4nameSSvg", + "mangledName": "$s10WalletCore9StoredKeyC4nameSSvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "multiAddress", - "printedName": "multiAddress", + "name": "isMnemonic", + "printedName": "isMnemonic", "children": [ { "kind": "TypeNominal", @@ -319027,11 +315750,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvp", + "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvp", + "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -319047,72 +315772,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvs", + "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvg", + "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "polymeshCall", - "printedName": "polymeshCall", + "name": "accountCount", + "printedName": "accountCount", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", + "usr": "s:10WalletCore9StoredKeyC12accountCountSivp", + "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -319122,77 +315811,48 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", + "usr": "s:10WalletCore9StoredKeyC12accountCountSivg", + "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "hasPolymeshCall", - "printedName": "hasPolymeshCall", + "name": "encryptionParameters", + "printedName": "encryptionParameters", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvp", + "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvp", + "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvp", "moduleName": "WalletCore", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], @@ -319204,258 +315864,423 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvg", + "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvg", + "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvg", "moduleName": "WalletCore", + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "clearPolymeshCall", - "printedName": "clearPolymeshCall()", + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryptionLevel:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" } ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17clearPolymeshCallyyF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17clearPolymeshCallyyF", + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", "moduleName": "WalletCore", "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "Mutating" + "init_kind": "Designated" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryptionLevel:encryption:)", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "account", + "printedName": "account(index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "mangledName": "$s10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accountForCoin", + "printedName": "accountForCoin(coin:wallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", + "mangledName": "$s10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Function", + "name": "accountForCoinDerivation", + "printedName": "accountForCoinDerivation(coin:derivation:wallet:)", "children": [ { - "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance) -> WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance) -> WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "moduleName": "WalletCore" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" } ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", + "mangledName": "$s10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "addAccountDerivation", + "printedName": "addAccountDerivation(address:coin:derivation:derivationPath:publicKey:extendedPublicKey:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputVACycfc", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", + "mangledName": "$s10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Function", + "name": "addAccount", + "printedName": "addAccount(address:coin:derivationPath:publicKey:extendedPublicKey:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "String", @@ -319463,96 +316288,49 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvpZ", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", + "mangledName": "$s10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Function", + "name": "removeAccountForCoin", + "printedName": "removeAccountForCoin(coin:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", + "mangledName": "$s10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "name": "removeAccountForCoinDerivation", + "printedName": "removeAccountForCoinDerivation(coin:derivation:)", "children": [ { "kind": "TypeNominal", @@ -319561,29 +316339,32 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", + "mangledName": "$s10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", "declAttributes": [ - "Mutating", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "removeAccountForCoinDerivationPath", + "printedName": "removeAccountForCoinDerivationPath(coin:derivationPath:)", "children": [ { "kind": "TypeNominal", @@ -319592,28 +316373,32 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", + "mangledName": "$s10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "store", + "printedName": "store(path:)", "children": [ { "kind": "TypeNominal", @@ -319623,133 +316408,218 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC5store4pathSbSS_tF", + "mangledName": "$s10WalletCore9StoredKeyC5store4pathSbSS_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptPrivateKey", + "printedName": "decryptPrivateKey(password:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Function", + "name": "decryptMnemonic", + "printedName": "decryptMnemonic(password:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "privateKey", + "printedName": "privateKey(coin:password:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "mangledName": "$s10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "wallet", + "printedName": "wallet(password:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", + "children": [ + { + "kind": "TypeNominal", + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "TW_Substrate_Proto_SigningOutput", - "children": [ + "kind": "Function", + "name": "exportJSON", + "printedName": "exportJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", + "mangledName": "$s10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { - "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "kind": "Function", + "name": "fixAddresses", + "printedName": "fixAddresses(password:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Data", @@ -319757,262 +316627,199 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore9StoredKeyC", + "mangledName": "$s10WalletCore9StoredKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "StoredKeyEncryption", + "printedName": "StoredKeyEncryption", + "children": [ + { + "kind": "Var", + "name": "aes128Ctr", + "printedName": "aes128Ctr", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "aes128Cbc", + "printedName": "aes128Cbc", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "aes192Ctr", + "printedName": "aes192Ctr", "children": [ { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "aes256Ctr", + "printedName": "aes256Ctr", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -320021,136 +316828,79 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "name": "Optional", + "printedName": "WalletCore.StoredKeyEncryption?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -320159,58 +316909,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV", + "declKind": "Enum", + "usr": "s:10WalletCore19StoredKeyEncryptionO", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -320221,121 +316959,228 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SubstrateAddress", - "printedName": "SubstrateAddress", + "name": "StoredKeyEncryptionLevel", + "printedName": "StoredKeyEncryptionLevel", "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "default", + "printedName": "default", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" - }, - { - "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore16SubstrateAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore16SubstrateAddressC2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:network:)", + "kind": "Var", + "name": "minimal", + "printedName": "minimal", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "weak", + "printedName": "weak", + "children": [ { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore16SubstrateAddressC13isValidString6string7networkSbSS_s5Int32VtFZ", - "mangledName": "$s10WalletCore16SubstrateAddressC13isValidString6string7networkSbSS_s5Int32VtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore16SubstrateAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore16SubstrateAddressC11descriptionSSvp", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -320344,18 +317189,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore16SubstrateAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore16SubstrateAddressC11descriptionSSvg", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] @@ -320363,202 +317206,171 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(string:network:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.SubstrateAddress?", + "printedName": "WalletCore.StoredKeyEncryptionLevel?", "children": [ { "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore16SubstrateAddressC6string7networkACSgSS_s5Int32Vtcfc", - "mangledName": "$s10WalletCore16SubstrateAddressC6string7networkACSgSS_s5Int32Vtcfc", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(publicKey:network:)", + "kind": "Var", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore16SubstrateAddressC9publicKey7networkAcA06PublicF0C_s5Int32Vtcfc", - "mangledName": "$s10WalletCore16SubstrateAddressC9publicKey7networkAcA06PublicF0C_s5Int32Vtcfc", + "declKind": "Var", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:10WalletCore16SubstrateAddressC", - "mangledName": "$s10WalletCore16SubstrateAddressC", + "declKind": "Enum", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO", "moduleName": "WalletCore", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true, + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SubstrateSigner", - "printedName": "SubstrateSigner", - "children": [ + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { - "kind": "Function", - "name": "message", - "printedName": "message(data:)", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore15SubstrateSignerC7message4data10Foundation4DataVAH_tFZ", - "mangledName": "$s10WalletCore15SubstrateSignerC7message4data10Foundation4DataVAH_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Function", - "name": "transaction", - "printedName": "transaction(data:publicKey:signature:)", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore15SubstrateSignerC11transaction4data9publicKey9signature10Foundation4DataVAJ_A2JtFZ", - "mangledName": "$s10WalletCore15SubstrateSignerC11transaction4data9publicKey9signature10Foundation4DataVAJ_A2JtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } - ], - "declKind": "Class", - "usr": "s:10WalletCore15SubstrateSignerC", - "mangledName": "$s10WalletCore15SubstrateSignerC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true + ] }, { "kind": "Import", @@ -369884,6 +366696,70 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRSValues", + "printedName": "getRSValues(signature:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore8WebAuthnV11getRSValues9signature10Foundation4DataVAH_tFZ", + "mangledName": "$s10WalletCore8WebAuthnV11getRSValues9signature10Foundation4DataVAH_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reconstructOriginalMessage", + "printedName": "reconstructOriginalMessage(authenticatorData:clientDataJSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore8WebAuthnV26reconstructOriginalMessage17authenticatorData06clientI4JSON10Foundation0I0VAI_AItFZ", + "mangledName": "$s10WalletCore8WebAuthnV26reconstructOriginalMessage17authenticatorData06clientI4JSON10Foundation0I0VAI_AItFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Struct", @@ -378668,413 +375544,308 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2337, + "offset": 2189, "length": 15, "value": "\"TW.Barz.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2568, + "offset": 2420, "length": 23, "value": "\".ContractAddressInput\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2662, + "offset": 2514, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2678, - "length": 9, - "value": "\"factory\"" + "offset": 2534, + "length": 13, + "value": "\"entry_point\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2694, + "offset": 2554, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2714, - "length": 19, - "value": "\"diamond_cut_facet\"" + "offset": 2570, + "length": 9, + "value": "\"factory\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2740, + "offset": 2586, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2760, + "offset": 2606, "length": 15, "value": "\"account_facet\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2782, + "offset": 2628, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2802, + "offset": 2648, "length": 20, "value": "\"verification_facet\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2829, + "offset": 2675, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2849, - "length": 22, - "value": "\"token_receiver_facet\"" + "offset": 2695, + "length": 16, + "value": "\"facet_registry\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2878, + "offset": 2718, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2898, - "length": 21, - "value": "\"diamond_loupe_facet\"" + "offset": 2738, + "length": 18, + "value": "\"default_fallback\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2926, + "offset": 2763, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2946, - "length": 14, - "value": "\"diamond_init\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 2967, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 2987, - "length": 16, - "value": "\"facet_registry\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 3010, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 3030, - "length": 13, - "value": "\"entry_point\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 3050, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 3067, + "offset": 2779, "length": 10, "value": "\"bytecode\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3084, - "length": 2, - "value": "11" + "offset": 2796, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 3105, + "offset": 2816, "length": 12, "value": "\"public_key\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3543, + "offset": 3254, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3627, + "offset": 3341, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3719, + "offset": 3425, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3808, + "offset": 3514, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3902, + "offset": 3608, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3997, + "offset": 3698, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 3790, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4179, + "offset": 3875, "length": 1, "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4269, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4356, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4442, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4742, + "offset": 4180, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4875, + "offset": 4297, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5002, + "offset": 4424, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5139, + "offset": 4561, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5278, + "offset": 4690, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5415, + "offset": 4823, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5540, + "offset": 4942, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5669, + "offset": 5063, "length": 1, "value": "8" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 5792, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 6033, - "length": 2, - "value": "11" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6256, + "offset": 5291, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6321, + "offset": 5340, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6380, + "offset": 5399, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6449, + "offset": 5468, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6520, + "offset": 5529, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6589, + "offset": 5594, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6646, + "offset": 5645, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6707, + "offset": 5698, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6762, + "offset": 5759, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6813, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6866, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6927, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6945, + "offset": 5777, "length": 4, "value": "true" }, @@ -391839,6 +388610,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", "kind": "IntegerLiteral", @@ -392791,6 +389583,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", "kind": "IntegerLiteral", @@ -393743,6 +390556,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Common.pb.swift", "kind": "IntegerLiteral", @@ -405149,189 +401983,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -405422,189 +402270,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -405695,189 +402557,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -435458,11616 +432334,10790 @@ }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "Array", - "offset": 5087, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 2748, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 2805, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "Array", - "offset": 11716, + "offset": 9285, "length": 2, "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13393, + "offset": 10388, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "Array", - "offset": 13797, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 10456, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15228, + "offset": 11447, "length": 1, "value": "0" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 11520, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 18808, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15304, + "offset": 22745, "length": 1, "value": "0" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 23714, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15384, + "offset": 29165, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16070, + "offset": 30770, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18563, + "offset": 40646, "length": 19, "value": "\"TW.Polkadot.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18737, + "offset": 40820, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18753, + "offset": 40836, "length": 8, "value": "\"STAKED\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18768, + "offset": 40851, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18784, + "offset": 40867, "length": 7, "value": "\"STASH\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18798, + "offset": 40881, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18814, + "offset": 40897, "length": 12, "value": "\"CONTROLLER\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19037, + "offset": 41120, "length": 6, "value": "\".Era\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19114, + "offset": 41197, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19134, + "offset": 41217, "length": 14, "value": "\"block_number\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19155, + "offset": 41238, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19171, + "offset": 41254, "length": 8, "value": "\"period\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19605, + "offset": 41688, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19693, + "offset": 41776, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19908, + "offset": 41991, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19993, + "offset": 42076, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20024, + "offset": 42107, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20104, + "offset": 42187, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20308, + "offset": 42391, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20355, + "offset": 42438, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20416, + "offset": 42499, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20434, + "offset": 42517, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20651, - "length": 10, - "value": "\".Balance\"" + "offset": 42744, + "length": 20, + "value": "\".CustomCallIndices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20732, + "offset": 42835, "length": 1, - "value": "1" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20748, - "length": 10, - "value": "\"transfer\"" + "offset": 42855, + "length": 14, + "value": "\"module_index\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20765, + "offset": 42876, "length": 1, - "value": "2" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20781, - "length": 15, - "value": "\"batchTransfer\"" + "offset": 42896, + "length": 14, + "value": "\"method_index\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21222, + "offset": 43336, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21310, - "length": 5, - "value": "false" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21387, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 43423, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21676, + "offset": 43642, "length": 1, - "value": "2" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21769, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 43726, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21846, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 43762, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22757, + "offset": 43846, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 22958, - "length": 1, - "value": "2" + "kind": "BooleanLiteral", + "offset": 44078, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23200, + "offset": 44135, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23261, + "offset": 44196, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23279, + "offset": 44214, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23530, - "length": 11, - "value": "\".Transfer\"" + "offset": 44435, + "length": 14, + "value": "\".CallIndices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23612, + "offset": 44520, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23632, - "length": 12, - "value": "\"to_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 23651, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 23667, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24100, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24186, - "length": 1, - "value": "2" + "offset": 44536, + "length": 8, + "value": "\"custom\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24484, + "offset": 44970, "length": 1, "value": "1" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24596, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 24822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 24867, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24928, + "offset": 45059, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24946, + "offset": 45131, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 25202, - "length": 16, - "value": "\".BatchTransfer\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 25289, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 25305, - "length": 11, - "value": "\"transfers\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 25742, - "length": 1, - "value": "1" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26047, + "offset": 45930, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26283, + "offset": 46146, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26344, + "offset": 46207, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26362, + "offset": 46225, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26579, + "offset": 46442, "length": 10, - "value": "\".Staking\"" + "value": "\".Balance\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26660, + "offset": 46523, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26676, - "length": 6, - "value": "\"bond\"" + "offset": 46539, + "length": 10, + "value": "\"transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26689, + "offset": 46556, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26709, - "length": 19, - "value": "\"bond_and_nominate\"" + "offset": 46572, + "length": 15, + "value": "\"batchTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26735, + "offset": 46594, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26755, - "length": 12, - "value": "\"bond_extra\"" + "offset": 46614, + "length": 16, + "value": "\"asset_transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26774, + "offset": 46637, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26790, - "length": 8, - "value": "\"unbond\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26805, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26825, - "length": 19, - "value": "\"withdraw_unbonded\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26851, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26867, - "length": 10, - "value": "\"nominate\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26884, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26900, - "length": 7, - "value": "\"chill\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26914, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26934, - "length": 18, - "value": "\"chill_and_unbond\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26959, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26975, - "length": 8, - "value": "\"rebond\"" + "offset": 46657, + "length": 22, + "value": "\"batch_asset_transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27409, + "offset": 47105, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27493, + "offset": 47193, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27570, + "offset": 47270, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27851, + "offset": 47559, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27946, + "offset": 47652, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28023, + "offset": 47729, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28326, + "offset": 48028, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28415, + "offset": 48121, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28492, + "offset": 48198, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28783, + "offset": 48497, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28869, + "offset": 48595, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28946, + "offset": 48672, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29231, + "offset": 49593, "length": 1, - "value": "5" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 29327, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 49794, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 29404, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 49995, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29709, + "offset": 50206, "length": 1, - "value": "6" + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 50448, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 29797, + "offset": 50509, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 29874, + "offset": 50527, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 30163, - "length": 1, - "value": "7" + "kind": "StringLiteral", + "offset": 50778, + "length": 11, + "value": "\".Transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30248, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 50860, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30325, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 50880, + "length": 12, + "value": "\"to_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30608, + "offset": 50899, "length": 1, - "value": "8" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30702, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 50915, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30779, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 50929, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 31080, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 50945, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 31166, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 50958, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 31243, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 50978, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32132, + "offset": 51418, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32337, + "offset": 51504, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32530, + "offset": 51585, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32717, + "offset": 51666, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32924, + "offset": 52269, "length": 1, - "value": "5" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33115, + "offset": 52381, "length": 1, - "value": "6" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33300, + "offset": 52492, "length": 1, - "value": "7" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33503, + "offset": 52609, "length": 1, - "value": "8" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 33690, - "length": 1, - "value": "9" + "kind": "BooleanLiteral", + "offset": 52839, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 33932, + "offset": 52884, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 33993, + "offset": 52927, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34011, - "length": 4, - "value": "true" + "offset": 52986, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 34258, - "length": 7, - "value": "\".Bond\"" + "kind": "BooleanLiteral", + "offset": 53047, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 34336, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 53065, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34352, - "length": 12, - "value": "\"controller\"" + "offset": 53321, + "length": 16, + "value": "\".BatchTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34371, + "offset": 53408, "length": 1, - "value": "2" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34387, - "length": 7, - "value": "\"value\"" + "offset": 53428, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34401, + "offset": 53449, "length": 1, - "value": "3" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34421, - "length": 20, - "value": "\"reward_destination\"" + "offset": 53465, + "length": 11, + "value": "\"transfers\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34867, + "offset": 53902, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34954, + "offset": 53992, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 35035, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 35346, + "offset": 54588, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 35458, + "offset": 54714, "length": 1, "value": "2" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 35595, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 35815, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35860, + "offset": 54956, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35929, + "offset": 55009, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35990, + "offset": 55070, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 36008, + "offset": 55088, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36266, - "length": 18, - "value": "\".BondAndNominate\"" + "offset": 55344, + "length": 16, + "value": "\".AssetTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36355, + "offset": 55431, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36371, - "length": 12, - "value": "\"controller\"" + "offset": 55451, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36390, + "offset": 55472, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36406, - "length": 7, - "value": "\"value\"" + "offset": 55492, + "length": 12, + "value": "\"to_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36420, + "offset": 55511, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36440, - "length": 20, - "value": "\"reward_destination\"" + "offset": 55527, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36467, + "offset": 55541, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36483, - "length": 12, - "value": "\"nominators\"" + "offset": 55561, + "length": 10, + "value": "\"asset_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 55578, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 55598, + "length": 14, + "value": "\"fee_asset_id\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36921, + "offset": 56038, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37008, + "offset": 56128, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37089, + "offset": 56214, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37181, + "offset": 56295, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37487, + "offset": 56379, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 56975, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37599, + "offset": 57100, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37736, + "offset": 57212, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37859, + "offset": 57244, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57325, "length": 1, "value": "4" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57360, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57444, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 57686, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38101, + "offset": 57739, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38146, + "offset": 57784, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38215, + "offset": 57833, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38270, + "offset": 57888, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38331, + "offset": 57949, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38349, + "offset": 57967, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 38601, - "length": 12, - "value": "\".BondExtra\"" + "offset": 58228, + "length": 21, + "value": "\".BatchAssetTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 38684, + "offset": 58320, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 38700, - "length": 7, - "value": "\"value\"" + "offset": 58340, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 39133, + "offset": 58361, "length": 1, - "value": "1" + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 58381, + "length": 14, + "value": "\"fee_asset_id\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 39422, + "offset": 58402, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39642, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 58418, + "length": 11, + "value": "\"transfers\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39703, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 58855, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39721, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 58945, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 39970, - "length": 9, - "value": "\".Unbond\"" + "kind": "IntegerLiteral", + "offset": 59032, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40050, + "offset": 59628, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 40066, - "length": 7, - "value": "\"value\"" + "kind": "IntegerLiteral", + "offset": 59667, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40499, + "offset": 59751, "length": 1, - "value": "1" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40788, + "offset": 59873, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41002, + "offset": 60125, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 60180, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 60233, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41063, + "offset": 60294, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41081, + "offset": 60312, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 41330, - "length": 9, - "value": "\".Rebond\"" + "offset": 60529, + "length": 10, + "value": "\".Staking\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 41410, + "offset": 60610, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 41426, - "length": 7, - "value": "\"value\"" + "offset": 60626, + "length": 6, + "value": "\"bond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 41859, + "offset": 60639, "length": 1, - "value": "1" + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60659, + "length": 19, + "value": "\"bond_and_nominate\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 42148, + "offset": 60685, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42362, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 60705, + "length": 12, + "value": "\"bond_extra\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42423, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 60724, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42441, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 60740, + "length": 8, + "value": "\"unbond\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 60755, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 42700, + "offset": 60775, "length": 19, - "value": "\".WithdrawUnbonded\"" + "value": "\"withdraw_unbonded\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 42790, + "offset": 60801, "length": 1, - "value": "1" + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 42810, - "length": 16, - "value": "\"slashing_spans\"" + "offset": 60817, + "length": 10, + "value": "\"nominate\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43252, + "offset": 60834, "length": 1, - "value": "1" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60850, + "length": 7, + "value": "\"chill\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43475, + "offset": 60864, "length": 1, - "value": "0" + "value": "8" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60884, + "length": 18, + "value": "\"chill_and_unbond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43561, + "offset": 60909, "length": 1, - "value": "1" + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 43811, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 60925, + "length": 8, + "value": "\"rebond\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 61359, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 43872, + "offset": 61443, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 43890, + "offset": 61520, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 44141, - "length": 11, - "value": "\".Nominate\"" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 44223, + "offset": 61801, "length": 1, - "value": "1" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 44239, - "length": 12, - "value": "\"nominators\"" + "kind": "BooleanLiteral", + "offset": 61896, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 44677, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 61973, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 44983, + "offset": 62276, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45211, + "offset": 62365, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45272, + "offset": 62442, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 62733, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 62819, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45290, + "offset": 62896, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 45547, - "length": 17, - "value": "\".ChillAndUnbond\"" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 45635, + "offset": 63181, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 45651, - "length": 7, - "value": "\"value\"" + "kind": "BooleanLiteral", + "offset": 63277, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 46084, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 63354, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 46373, + "offset": 63659, "length": 1, - "value": "1" + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46603, + "offset": 63747, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46664, + "offset": 63824, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 64113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 64198, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46682, + "offset": 64275, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 46930, - "length": 8, - "value": "\".Chill\"" + "kind": "IntegerLiteral", + "offset": 64558, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 47451, + "offset": 64652, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 47469, + "offset": 64729, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47691, - "length": 15, - "value": "\".SigningInput\"" + "kind": "IntegerLiteral", + "offset": 65030, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 47777, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 65116, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47797, - "length": 12, - "value": "\"block_hash\"" + "kind": "BooleanLiteral", + "offset": 65193, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47816, + "offset": 66082, "length": 1, - "value": "2" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47836, - "length": 14, - "value": "\"genesis_hash\"" + "kind": "IntegerLiteral", + "offset": 66287, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47857, + "offset": 66480, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47873, - "length": 7, - "value": "\"nonce\"" + "kind": "IntegerLiteral", + "offset": 66667, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47887, + "offset": 66874, "length": 1, - "value": "4" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47907, - "length": 14, - "value": "\"spec_version\"" + "kind": "IntegerLiteral", + "offset": 67065, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47928, + "offset": 67250, "length": 1, - "value": "5" + "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47948, - "length": 21, - "value": "\"transaction_version\"" + "kind": "IntegerLiteral", + "offset": 67453, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47976, + "offset": 67640, "length": 1, - "value": "6" + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47992, + "kind": "BooleanLiteral", + "offset": 67882, "length": 5, - "value": "\"tip\"" + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 48004, - "length": 1, - "value": "7" + "kind": "BooleanLiteral", + "offset": 67943, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 67961, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48020, - "length": 5, - "value": "\"era\"" + "offset": 68208, + "length": 7, + "value": "\".Bond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48032, + "offset": 68286, "length": 1, - "value": "8" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48052, - "length": 13, - "value": "\"private_key\"" + "offset": 68302, + "length": 12, + "value": "\"controller\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48072, + "offset": 68321, "length": 1, - "value": "9" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48088, - "length": 9, - "value": "\"network\"" + "offset": 68337, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48104, - "length": 2, - "value": "10" + "offset": 68351, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48125, - "length": 14, - "value": "\"balance_call\"" + "offset": 68371, + "length": 20, + "value": "\"reward_destination\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48146, - "length": 2, - "value": "11" + "offset": 68398, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48167, + "offset": 68418, "length": 14, - "value": "\"staking_call\"" + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48607, + "offset": 68858, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48692, + "offset": 68945, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48779, + "offset": 69026, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48861, + "offset": 69118, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48949, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49044, + "offset": 69723, "length": 1, - "value": "6" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49123, + "offset": 69835, "length": 1, - "value": "7" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49205, + "offset": 69972, "length": 1, - "value": "8" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49291, + "offset": 70089, "length": 1, - "value": "9" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49375, - "length": 2, - "value": "10" + "kind": "BooleanLiteral", + "offset": 70313, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49455, + "offset": 70358, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49532, - "length": 4, - "value": "true" + "offset": 70427, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49827, - "length": 2, - "value": "11" + "kind": "BooleanLiteral", + "offset": 70486, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49907, + "offset": 70547, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49984, + "offset": 70565, "length": 4, "value": "true" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 70823, + "length": 18, + "value": "\".BondAndNominate\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 50791, + "offset": 70912, "length": 1, "value": "1" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 70928, + "length": 12, + "value": "\"controller\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 50915, + "offset": 70947, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 50945, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 70963, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51024, + "offset": 70977, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51060, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 70997, + "length": 20, + "value": "\"reward_destination\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51145, + "offset": 71024, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51188, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 71040, + "length": 12, + "value": "\"nominators\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51280, + "offset": 71059, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51388, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 71079, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51497, + "offset": 71519, "length": 1, - "value": "7" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51623, + "offset": 71606, "length": 1, - "value": "8" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51655, + "offset": 71687, "length": 1, - "value": "0" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51736, + "offset": 71779, "length": 1, - "value": "9" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51962, - "length": 2, - "value": "10" + "offset": 71866, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 52160, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52407, - "length": 5, - "value": "false" + "offset": 72471, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52464, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72583, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52509, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72720, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52566, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72843, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52637, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72960, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52678, + "offset": 73206, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52721, + "offset": 73251, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52776, + "offset": 73320, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52825, + "offset": 73375, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52884, + "offset": 73434, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52945, + "offset": 73495, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52963, + "offset": 73513, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53186, - "length": 16, - "value": "\".SigningOutput\"" + "offset": 73765, + "length": 12, + "value": "\".BondExtra\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53273, + "offset": 73848, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53289, - "length": 9, - "value": "\"encoded\"" + "offset": 73864, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53305, + "offset": 73878, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53321, - "length": 7, - "value": "\"error\"" + "offset": 73898, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53335, + "offset": 74338, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 53355, - "length": 15, - "value": "\"error_message\"" + "kind": "IntegerLiteral", + "offset": 74419, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53796, + "offset": 75013, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53879, + "offset": 75130, "length": 1, "value": "2" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75354, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75474, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75492, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75741, + "length": 9, + "value": "\".Unbond\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53959, + "offset": 75821, "length": 1, - "value": "3" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75837, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 75851, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75871, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54260, + "offset": 76311, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54369, + "offset": 76392, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54496, + "offset": 76986, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 54712, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 77103, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54757, + "offset": 77321, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54816, + "offset": 77380, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54877, + "offset": 77441, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54895, + "offset": 77459, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77708, + "length": 9, + "value": "\".Rebond\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 77788, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77804, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 77818, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77838, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 78278, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 78359, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 78953, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 79070, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 506, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79288, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 527, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79347, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79408, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79685, + "length": 19, + "value": "\".WithdrawUnbonded\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 79775, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79795, + "length": 16, + "value": "\"slashing_spans\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 579, + "offset": 79818, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79838, + "length": 14, + "value": "\"call_indices\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 607, + "offset": 80278, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 628, + "offset": 80367, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 80887, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 80973, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 81090, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 506, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81344, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 527, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81403, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 555, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81464, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 579, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81482, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 607, - "length": 1, - "value": "7" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81733, + "length": 11, + "value": "\".Nominate\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 628, + "offset": 81815, "length": 1, - "value": "8" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81831, + "length": 12, + "value": "\"nominators\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 81850, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81870, + "length": 14, + "value": "\"call_indices\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 82310, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 82397, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 506, + "offset": 83002, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 527, + "offset": 83119, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 555, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83351, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 579, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83410, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 607, - "length": 1, - "value": "7" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83471, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 1, - "value": "8" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83489, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83746, + "length": 17, + "value": "\".ChillAndUnbond\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "offset": 83834, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83850, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 694, - "length": 4, - "value": "1852" + "offset": 83864, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83884, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "offset": 84324, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "offset": 84405, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 694, - "length": 4, - "value": "1852" + "offset": 84999, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "offset": 85116, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85350, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85409, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 694, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85470, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85488, "length": 4, - "value": "1852" + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 2933, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 85736, + "length": 8, + "value": "\".Chill\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 3357, + "offset": 85815, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "Array", - "offset": 6227, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 85835, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 6660, + "offset": 86275, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 6724, + "offset": 86874, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 6797, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87104, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 6924, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87165, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 11762, - "length": 17, - "value": "\"TW.Ripple.Proto\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87183, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 11991, - "length": 17, - "value": "\".CurrencyAmount\"" + "offset": 87401, + "length": 11, + "value": "\".Identity\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12079, + "offset": 87483, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 12095, - "length": 10, - "value": "\"currency\"" + "offset": 87503, + "length": 22, + "value": "\"join_identity_as_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12112, + "offset": 87532, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 12128, - "length": 7, - "value": "\"value\"" + "offset": 87552, + "length": 19, + "value": "\"add_authorization\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12142, + "offset": 87997, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 12158, - "length": 8, - "value": "\"issuer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88095, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 12592, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88172, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12677, + "offset": 88479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 12759, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88576, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 13057, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88653, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13170, + "offset": 89588, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13285, + "offset": 89795, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 13501, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 13546, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13593, + "offset": 90039, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13654, + "offset": 90100, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13672, + "offset": 90118, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 13897, + "offset": 90380, "length": 20, - "value": "\".OperationTrustSet\"" + "value": "\".JoinIdentityAsKey\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13988, + "offset": 90471, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 14008, + "offset": 90491, "length": 14, - "value": "\"limit_amount\"" + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 14448, + "offset": 90512, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 90532, + "length": 9, + "value": "\"auth_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 90967, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15047, + "offset": 91057, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91649, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91764, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15281, + "offset": 92016, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15342, + "offset": 92063, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15360, + "offset": 92124, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 92142, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15584, + "offset": 92403, "length": 19, - "value": "\".OperationPayment\"" + "value": "\".AddAuthorization\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15674, + "offset": 92493, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15690, - "length": 8, - "value": "\"amount\"" + "offset": 92513, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15705, + "offset": 92534, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15725, - "length": 17, - "value": "\"currency_amount\"" + "offset": 92550, + "length": 8, + "value": "\"target\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15749, + "offset": 92565, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15765, - "length": 13, - "value": "\"destination\"" + "offset": 92581, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15785, + "offset": 92594, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15805, - "length": 17, - "value": "\"destination_tag\"" + "offset": 92610, + "length": 8, + "value": "\"expiry\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16248, + "offset": 93044, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16505, + "offset": 93134, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 16589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 16665, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16965, + "offset": 93217, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17053, + "offset": 93300, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17747, + "offset": 93892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17949, + "offset": 94011, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18102, + "offset": 94121, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18141, + "offset": 94156, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18228, + "offset": 94236, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18454, + "offset": 94486, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18511, + "offset": 94533, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18574, + "offset": 94578, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18635, + "offset": 94625, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18653, + "offset": 94686, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 94704, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18881, - "length": 23, - "value": "\".OperationNFTokenBurn\"" + "offset": 94994, + "length": 7, + "value": "\".Data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18975, + "offset": 95072, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18995, - "length": 12, - "value": "\"nftoken_id\"" + "offset": 95088, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19433, + "offset": 95520, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19734, + "offset": 95806, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 19964, + "offset": 96064, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20025, + "offset": 96125, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20043, + "offset": 96143, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20278, - "length": 30, - "value": "\".OperationNFTokenCreateOffer\"" + "offset": 96430, + "length": 11, + "value": "\".AuthData\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20379, + "offset": 96512, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20399, - "length": 12, - "value": "\"nftoken_id\"" + "offset": 96528, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20418, + "offset": 96542, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20434, - "length": 13, - "value": "\"destination\"" + "offset": 96558, + "length": 11, + "value": "\"extrinsic\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20873, + "offset": 96576, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 20958, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 96592, + "length": 11, + "value": "\"portfolio\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21262, + "offset": 97029, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21387, + "offset": 97113, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21631, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21749, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21767, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 22002, - "length": 30, - "value": "\".OperationNFTokenAcceptOffer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 97201, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22103, + "offset": 97792, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 22123, - "length": 12, - "value": "\"sell_offer\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22561, + "offset": 97911, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22862, + "offset": 98030, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23106, + "offset": 98290, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23167, + "offset": 98345, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23185, + "offset": 98400, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 98461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 98479, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23420, - "length": 30, - "value": "\".OperationNFTokenCancelOffer\"" + "offset": 98701, + "length": 15, + "value": "\".PolymeshCall\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23521, + "offset": 98787, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23541, - "length": 14, - "value": "\"token_offers\"" + "offset": 98807, + "length": 15, + "value": "\"identity_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23981, + "offset": 99248, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 99328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 99405, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24288, + "offset": 100232, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24536, + "offset": 100460, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24597, + "offset": 100521, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24615, + "offset": 100539, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24835, + "offset": 100761, "length": 15, "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24921, + "offset": 100847, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24937, - "length": 5, - "value": "\"fee\"" + "offset": 100867, + "length": 12, + "value": "\"block_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24949, + "offset": 100886, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24965, - "length": 10, - "value": "\"sequence\"" + "offset": 100906, + "length": 14, + "value": "\"genesis_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24982, + "offset": 100927, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25002, - "length": 22, - "value": "\"last_ledger_sequence\"" + "offset": 100943, + "length": 7, + "value": "\"nonce\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25031, + "offset": 100957, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25047, - "length": 9, - "value": "\"account\"" + "offset": 100977, + "length": 14, + "value": "\"spec_version\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25063, + "offset": 100998, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25079, - "length": 7, - "value": "\"flags\"" + "offset": 101018, + "length": 21, + "value": "\"transaction_version\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25093, + "offset": 101046, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25113, - "length": 13, - "value": "\"private_key\"" + "offset": 101062, + "length": 5, + "value": "\"tip\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25133, + "offset": 101074, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25153, - "length": 14, - "value": "\"op_trust_set\"" + "offset": 101090, + "length": 5, + "value": "\"era\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25174, + "offset": 101102, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25194, - "length": 12, - "value": "\"op_payment\"" + "offset": 101122, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25213, + "offset": 101142, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25233, - "length": 17, - "value": "\"op_nftoken_burn\"" + "offset": 101158, + "length": 9, + "value": "\"network\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25257, + "offset": 101174, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25278, - "length": 25, - "value": "\"op_nftoken_create_offer\"" + "offset": 101195, + "length": 15, + "value": "\"multi_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25310, + "offset": 101217, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25331, - "length": 25, - "value": "\"op_nftoken_accept_offer\"" + "offset": 101238, + "length": 14, + "value": "\"balance_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25363, + "offset": 101259, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25384, - "length": 25, - "value": "\"op_nftoken_cancel_offer\"" + "offset": 101280, + "length": 14, + "value": "\"staking_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25416, + "offset": 101301, "length": 2, - "value": "15" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25437, - "length": 12, - "value": "\"public_key\"" + "offset": 101322, + "length": 15, + "value": "\"polymesh_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25875, + "offset": 101476, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25954, + "offset": 101509, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26038, + "offset": 101549, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26132, + "offset": 101684, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 101716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26216, + "offset": 103051, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26297, + "offset": 103143, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26383, + "offset": 103237, "length": 1, - "value": "7" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26470, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103326, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26549, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103421, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26844, + "offset": 103523, "length": 1, - "value": "8" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26930, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103609, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27009, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103697, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27302, + "offset": 103790, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27392, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27471, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103881, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27772, + "offset": 103976, "length": 2, - "value": "10" + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27870, + "offset": 104060, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27949, + "offset": 104146, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28264, + "offset": 104464, "length": 2, - "value": "11" + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28362, + "offset": 104548, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28441, + "offset": 104634, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28756, + "offset": 104952, "length": 2, - "value": "12" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28854, + "offset": 105041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28933, + "offset": 105127, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 29248, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29754, + "offset": 106061, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29830, + "offset": 106201, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29863, + "offset": 106240, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29944, + "offset": 106326, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29987, + "offset": 106371, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 30078, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30195, + "offset": 106463, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30225, + "offset": 106515, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30303, + "offset": 106614, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30425, + "offset": 106738, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30653, + "offset": 106857, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30848, + "offset": 106999, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31051, + "offset": 107040, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 107128, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 107174, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31268, + "offset": 107269, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31486, + "offset": 107516, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31704, + "offset": 107727, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31853, + "offset": 107940, "length": 2, - "value": "15" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32056, + "offset": 108453, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32107, + "offset": 108529, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32178, + "offset": 108593, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32227, + "offset": 108669, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32272, + "offset": 108759, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32327, + "offset": 108819, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32390, + "offset": 108879, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32443, + "offset": 108953, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32504, + "offset": 109021, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32522, + "offset": 109099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109199, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109247, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109314, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109332, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32743, + "offset": 109555, "length": 16, "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32830, + "offset": 109642, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32846, + "offset": 109658, "length": 9, "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32862, + "offset": 109674, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32878, + "offset": 109690, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32892, + "offset": 109704, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32912, + "offset": 109724, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33353, + "offset": 110165, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33436, + "offset": 110248, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33516, + "offset": 110328, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33817, + "offset": 110629, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33926, + "offset": 110738, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34053, + "offset": 110865, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34265, + "offset": 111081, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34310, + "offset": 111126, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34369, + "offset": 111185, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34430, + "offset": 111246, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34448, + "offset": 111264, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 1199, + "offset": 421, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 1334, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 2072, + "offset": 452, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 3025, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 475, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 3517, + "offset": 506, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 4027, + "offset": 527, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 4468, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 5794, + "offset": 579, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 5853, + "offset": 607, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 5990, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 6865, + "offset": 421, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 6924, + "offset": 452, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 7054, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 475, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 7527, + "offset": 506, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 8097, + "offset": 527, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 9073, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 18438, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 579, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 18929, - "length": 17, - "value": "\"TW.Solana.Proto\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 607, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19152, - "length": 11, - "value": "\".Transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19234, + "offset": 421, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19250, - "length": 11, - "value": "\"recipient\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 452, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19268, + "offset": 475, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19284, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19298, + "offset": 506, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19314, - "length": 6, - "value": "\"memo\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19327, + "offset": 527, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 12, - "value": "\"references\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19781, + "offset": 579, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19867, + "offset": 607, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19949, + "offset": 628, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20030, - "length": 1, - "value": "4" + "offset": 632, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20334, - "length": 1, - "value": "1" + "offset": 652, + "length": 2, + "value": "49" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20364, - "length": 1, - "value": "0" + "offset": 672, + "length": 2, + "value": "84" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20443, - "length": 1, - "value": "2" + "offset": 694, + "length": 4, + "value": "1852" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20554, + "offset": 632, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 652, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 672, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 694, + "length": 4, + "value": "1852" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 652, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 672, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 694, + "length": 4, + "value": "1852" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 2933, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 20677, + "offset": 3357, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20883, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "Array", + "offset": 6227, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20928, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6660, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20971, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6724, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21026, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6797, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21087, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6924, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21105, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 11762, + "length": 17, + "value": "\"TW.Ripple.Proto\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21326, - "length": 16, - "value": "\".DelegateStake\"" + "offset": 11991, + "length": 17, + "value": "\".CurrencyAmount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21413, + "offset": 12079, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21433, - "length": 18, - "value": "\"validator_pubkey\"" + "offset": 12095, + "length": 10, + "value": "\"currency\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21458, + "offset": 12112, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21474, + "offset": 12128, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21488, + "offset": 12142, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21508, - "length": 15, - "value": "\"stake_account\"" + "offset": 12158, + "length": 8, + "value": "\"issuer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21949, + "offset": 12592, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22041, + "offset": 12677, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22123, + "offset": 12759, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22441, + "offset": 13057, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 22471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22550, + "offset": 13170, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22677, + "offset": 13285, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 22905, + "offset": 13501, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 22950, + "offset": 13546, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23009, + "offset": 13593, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23070, + "offset": 13654, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23088, + "offset": 13672, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 23311, - "length": 18, - "value": "\".DeactivateStake\"" + "offset": 13897, + "length": 20, + "value": "\".OperationTrustSet\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 23400, + "offset": 13988, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 23420, - "length": 15, - "value": "\"stake_account\"" + "offset": 14008, + "length": 14, + "value": "\"limit_amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 23861, + "offset": 14448, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 24173, + "offset": 15047, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24399, + "offset": 15281, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24460, + "offset": 15342, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24478, + "offset": 15360, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 24704, - "length": 21, - "value": "\".DeactivateAllStake\"" + "offset": 15584, + "length": 19, + "value": "\".OperationPayment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 24796, + "offset": 15674, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 24816, - "length": 16, - "value": "\"stake_accounts\"" + "offset": 15690, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 25258, + "offset": 15705, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15725, + "length": 17, + "value": "\"currency_amount\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 25573, + "offset": 15749, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15765, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 15785, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15805, + "length": 17, + "value": "\"destination_tag\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 16248, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 25807, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 16505, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 25868, + "offset": 16589, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 25886, + "offset": 16665, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26107, - "length": 16, - "value": "\".WithdrawStake\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26194, + "offset": 16965, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26214, - "length": 15, - "value": "\"stake_account\"" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26236, + "offset": 17053, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26252, - "length": 7, - "value": "\"value\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26685, + "offset": 17747, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26774, + "offset": 17949, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27079, + "offset": 18102, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27109, + "offset": 18141, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27188, + "offset": 18228, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27410, + "offset": 18454, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27455, + "offset": 18511, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27516, + "offset": 18574, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27534, + "offset": 18635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 18653, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27759, - "length": 20, - "value": "\".StakeAccountValue\"" + "offset": 18881, + "length": 23, + "value": "\".OperationNFTokenBurn\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27850, + "offset": 18975, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27870, - "length": 15, - "value": "\"stake_account\"" + "offset": 18995, + "length": 12, + "value": "\"nftoken_id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27892, + "offset": 19433, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 19734, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 19964, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 20025, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 20043, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27908, - "length": 7, - "value": "\"value\"" + "offset": 20278, + "length": 30, + "value": "\".OperationNFTokenCreateOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28341, + "offset": 20379, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 20399, + "length": 12, + "value": "\"nftoken_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28430, + "offset": 20418, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 20434, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28735, + "offset": 20873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28765, + "offset": 20958, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28844, + "offset": 21262, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 21387, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29074, + "offset": 21631, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29119, + "offset": 21688, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29180, + "offset": 21749, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29198, + "offset": 21767, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 29422, - "length": 19, - "value": "\".WithdrawAllStake\"" + "offset": 22002, + "length": 30, + "value": "\".OperationNFTokenAcceptOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 29512, + "offset": 22103, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 29532, - "length": 16, - "value": "\"stake_accounts\"" + "offset": 22123, + "length": 12, + "value": "\"sell_offer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 29974, + "offset": 22561, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 30291, + "offset": 22862, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30521, + "offset": 23106, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30582, + "offset": 23167, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30600, + "offset": 23185, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 30826, - "length": 21, - "value": "\".CreateTokenAccount\"" + "offset": 23420, + "length": 30, + "value": "\".OperationNFTokenCancelOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 30918, + "offset": 23521, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 30938, + "offset": 23541, "length": 14, - "value": "\"main_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 30959, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 30979, - "length": 20, - "value": "\"token_mint_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31006, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 31026, - "length": 15, - "value": "\"token_address\"" + "value": "\"token_offers\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 31467, + "offset": 23981, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31555, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31648, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 31958, + "offset": 24288, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 32093, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 32220, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 32450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 32517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32576, + "offset": 24536, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32637, + "offset": 24597, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32655, + "offset": 24615, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 32876, - "length": 16, - "value": "\".TokenTransfer\"" + "offset": 24835, + "length": 15, + "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 32963, + "offset": 24921, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 32983, - "length": 20, - "value": "\"token_mint_address\"" + "offset": 24937, + "length": 5, + "value": "\"fee\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33010, + "offset": 24949, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33030, - "length": 22, - "value": "\"sender_token_address\"" + "offset": 24965, + "length": 10, + "value": "\"sequence\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33059, + "offset": 24982, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33079, - "length": 25, - "value": "\"recipient_token_address\"" + "offset": 25002, + "length": 22, + "value": "\"last_ledger_sequence\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33111, + "offset": 25031, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33127, - "length": 8, - "value": "\"amount\"" + "offset": 25047, + "length": 9, + "value": "\"account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33142, + "offset": 25063, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33158, - "length": 10, - "value": "\"decimals\"" + "offset": 25079, + "length": 7, + "value": "\"flags\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33175, + "offset": 25093, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33191, - "length": 6, - "value": "\"memo\"" + "offset": 25113, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33204, + "offset": 25133, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33220, - "length": 12, - "value": "\"references\"" + "offset": 25153, + "length": 14, + "value": "\"op_trust_set\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33658, + "offset": 25174, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 33751, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25194, + "length": 12, + "value": "\"op_payment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33846, + "offset": 25213, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 33944, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25233, + "length": 17, + "value": "\"op_nftoken_burn\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34027, - "length": 1, - "value": "5" + "offset": 25257, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 34112, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25278, + "length": 25, + "value": "\"op_nftoken_create_offer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34193, - "length": 1, - "value": "7" + "offset": 25310, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25331, + "length": 25, + "value": "\"op_nftoken_accept_offer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34511, - "length": 1, - "value": "1" + "offset": 25363, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25384, + "length": 25, + "value": "\"op_nftoken_cancel_offer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34650, - "length": 1, - "value": "2" + "offset": 25416, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25437, + "length": 12, + "value": "\"public_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34795, + "offset": 25875, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34826, + "offset": 25954, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34906, + "offset": 26038, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34939, + "offset": 26132, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35021, + "offset": 26216, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35132, + "offset": 26297, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35255, + "offset": 26383, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35485, + "offset": 26470, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35556, - "length": 5, - "value": "false" + "offset": 26549, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 35633, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 26844, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35680, + "offset": 26930, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" + "offset": 27009, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 27302, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35774, + "offset": 27392, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35829, - "length": 5, - "value": "false" + "offset": 27471, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 27772, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35890, + "offset": 27870, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35908, + "offset": 27949, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36138, - "length": 25, - "value": "\".CreateAndTransferToken\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36234, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36254, - "length": 24, - "value": "\"recipient_main_address\"" + "offset": 28264, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 36285, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28362, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36305, - "length": 20, - "value": "\"token_mint_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28441, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36332, - "length": 1, - "value": "3" + "offset": 28756, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36352, - "length": 25, - "value": "\"recipient_token_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28854, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 36384, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28933, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36404, - "length": 22, - "value": "\"sender_token_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 29248, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36433, + "offset": 29754, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36449, - "length": 8, - "value": "\"amount\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36464, + "offset": 29830, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36480, - "length": 10, - "value": "\"decimals\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36497, + "offset": 29863, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36513, - "length": 6, - "value": "\"memo\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36526, + "offset": 29944, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36542, - "length": 12, - "value": "\"references\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36980, + "offset": 29987, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37077, + "offset": 30078, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37170, + "offset": 30195, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37268, + "offset": 30225, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37363, + "offset": 30303, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37446, + "offset": 30425, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37531, + "offset": 30653, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37612, + "offset": 30848, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 37938, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38073, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38218, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38357, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38468, + "offset": 31051, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38501, - "length": 1, - "value": "0" + "offset": 31268, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38583, - "length": 1, - "value": "6" + "offset": 31486, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38694, - "length": 1, - "value": "7" + "offset": 31704, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38817, - "length": 1, - "value": "8" + "offset": 31853, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39073, + "offset": 32056, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39140, + "offset": 32107, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39217, + "offset": 32178, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39288, + "offset": 32227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39335, + "offset": 32272, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39386, + "offset": 32327, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39429, + "offset": 32390, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39484, + "offset": 32443, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39545, + "offset": 32504, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39563, + "offset": 32522, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39789, - "length": 21, - "value": "\".CreateNonceAccount\"" + "offset": 32743, + "length": 16, + "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39881, + "offset": 32830, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39901, - "length": 15, - "value": "\"nonce_account\"" + "offset": 32846, + "length": 9, + "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39923, + "offset": 32862, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39939, - "length": 6, - "value": "\"rent\"" + "offset": 32878, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39952, + "offset": 32892, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39972, - "length": 27, - "value": "\"nonce_account_private_key\"" + "offset": 32912, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40425, + "offset": 33353, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40514, + "offset": 33436, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40595, + "offset": 33516, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40916, + "offset": 33817, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 40945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 41023, + "offset": 33926, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 41169, + "offset": 34053, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41401, + "offset": 34265, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41444, + "offset": 34310, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41523, + "offset": 34369, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41584, + "offset": 34430, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41602, + "offset": 34448, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41830, - "length": 23, - "value": "\".WithdrawNonceAccount\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 41924, + "offset": 542, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41944, - "length": 15, - "value": "\"nonce_account\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 41966, + "offset": 562, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41982, - "length": 11, - "value": "\"recipient\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42000, + "offset": 542, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 42016, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "kind": "IntegerLiteral", + "offset": 562, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42449, + "offset": 542, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42538, + "offset": 562, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42624, + "offset": 1199, "length": 1, - "value": "3" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 42929, - "length": 1, - "value": "1" + "kind": "Array", + "offset": 1334, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43050, + "offset": 2072, "length": 1, - "value": "2" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 43080, - "length": 1, - "value": "0" + "kind": "Array", + "offset": 3025, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43159, + "offset": 3517, "length": 1, - "value": "3" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43395, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 4027, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43448, - "length": 5, - "value": "false" + "kind": "Array", + "offset": 4468, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43493, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 5794, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43554, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 5853, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43572, - "length": 4, - "value": "true" + "kind": "Array", + "offset": 5990, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 43799, - "length": 22, - "value": "\".AdvanceNonceAccount\"" + "kind": "IntegerLiteral", + "offset": 6865, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43892, + "offset": 6924, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 43912, - "length": 15, - "value": "\"nonce_account\"" + "kind": "Array", + "offset": 7054, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44353, + "offset": 7527, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44665, + "offset": 8097, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44899, + "offset": 9073, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 44960, - "length": 5, - "value": "false" + "kind": "Array", + "offset": 18438, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 44978, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 18929, + "length": 17, + "value": "\"TW.Solana.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45198, - "length": 15, - "value": "\".SigningInput\"" + "offset": 19152, + "length": 11, + "value": "\".Transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45284, + "offset": 19234, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45304, - "length": 13, - "value": "\"private_key\"" + "offset": 19250, + "length": 11, + "value": "\"recipient\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45324, + "offset": 19268, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45344, - "length": 18, - "value": "\"recent_blockhash\"" + "offset": 19284, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45369, + "offset": 19298, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45389, - "length": 8, - "value": "\"v0_msg\"" + "offset": 19314, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45404, + "offset": 19327, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45424, - "length": 22, - "value": "\"transfer_transaction\"" + "offset": 19343, + "length": 12, + "value": "\"references\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45453, + "offset": 19781, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45473, - "length": 28, - "value": "\"delegate_stake_transaction\"" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45508, + "offset": 19867, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45528, - "length": 30, - "value": "\"deactivate_stake_transaction\"" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45565, + "offset": 19949, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45585, - "length": 34, - "value": "\"deactivate_all_stake_transaction\"" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45626, + "offset": 20030, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45646, - "length": 22, - "value": "\"withdraw_transaction\"" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45675, + "offset": 20334, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45695, - "length": 26, - "value": "\"withdraw_all_transaction\"" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45728, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45749, - "length": 34, - "value": "\"create_token_account_transaction\"" + "offset": 20364, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45790, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45811, - "length": 28, - "value": "\"token_transfer_transaction\"" + "offset": 20443, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45846, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45867, - "length": 39, - "value": "\"create_and_transfer_token_transaction\"" + "offset": 20554, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45913, - "length": 2, - "value": "13" + "offset": 20677, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45934, - "length": 22, - "value": "\"create_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 20883, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 45963, - "length": 2, - "value": "16" + "kind": "BooleanLiteral", + "offset": 20928, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45984, - "length": 24, - "value": "\"withdraw_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 20971, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 46015, - "length": 2, - "value": "19" + "kind": "BooleanLiteral", + "offset": 21026, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 46036, - "length": 23, - "value": "\"advance_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 21087, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 46066, - "length": 2, - "value": "14" + "kind": "BooleanLiteral", + "offset": 21105, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46083, - "length": 8, - "value": "\"sender\"" + "offset": 21326, + "length": 16, + "value": "\".DelegateStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46098, - "length": 2, - "value": "15" + "offset": 21413, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46119, - "length": 15, - "value": "\"nonce_account\"" + "offset": 21433, + "length": 18, + "value": "\"validator_pubkey\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46141, - "length": 2, - "value": "17" + "offset": 21458, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46162, - "length": 23, - "value": "\"fee_payer_private_key\"" + "offset": 21474, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46192, - "length": 2, - "value": "18" + "offset": 21488, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46213, - "length": 11, - "value": "\"fee_payer\"" + "offset": 21508, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46650, + "offset": 21949, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46736, + "offset": 22041, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46828, + "offset": 22123, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46908, + "offset": 22441, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 46986, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47066, - "length": 4, - "value": "true" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 47380, + "offset": 22471, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47463, - "length": 5, - "value": "false" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47543, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 22550, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 47867, + "offset": 22677, "length": 1, - "value": "6" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 47952, + "offset": 22905, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48032, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 48360, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 48448, + "offset": 22950, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48528, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 48862, - "length": 1, - "value": "8" + "offset": 23009, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48945, + "offset": 23070, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 49025, + "offset": 23088, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 49339, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49425, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49505, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 23311, + "length": 18, + "value": "\".DeactivateStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 49825, - "length": 2, - "value": "10" + "offset": 23400, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49914, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 23420, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49994, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 23861, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 50328, - "length": 2, - "value": "11" + "offset": 24173, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50412, + "offset": 24399, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 50816, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 50909, + "offset": 24460, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50989, + "offset": 24478, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 51331, - "length": 2, - "value": "13" + "kind": "StringLiteral", + "offset": 24704, + "length": 21, + "value": "\".DeactivateAllStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 51420, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 24796, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 51500, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 24816, + "length": 16, + "value": "\"stake_accounts\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 51812, - "length": 2, - "value": "14" + "offset": 25258, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 51896, - "length": 2, - "value": "15" + "offset": 25573, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 51986, - "length": 2, - "value": "16" + "kind": "BooleanLiteral", + "offset": 25807, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 52077, + "offset": 25868, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 52157, + "offset": 25886, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 52473, - "length": 2, - "value": "17" + "kind": "StringLiteral", + "offset": 26107, + "length": 16, + "value": "\".WithdrawStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 52568, - "length": 2, - "value": "18" + "offset": 26194, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 52654, - "length": 2, - "value": "19" + "kind": "StringLiteral", + "offset": 26214, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 52744, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 26236, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 52824, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 26252, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53652, + "offset": 26685, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53785, + "offset": 26774, "length": 1, "value": "2" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 53815, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53896, + "offset": 27079, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 54144, + "offset": 27109, "length": 1, - "value": "4" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 54370, + "offset": 27188, "length": 1, - "value": "5" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 54600, - "length": 1, - "value": "6" + "kind": "BooleanLiteral", + "offset": 27410, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 54836, - "length": 1, - "value": "7" + "kind": "BooleanLiteral", + "offset": 27455, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55052, - "length": 1, - "value": "8" + "kind": "BooleanLiteral", + "offset": 27516, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55274, - "length": 1, - "value": "9" + "kind": "BooleanLiteral", + "offset": 27534, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55510, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 27759, + "length": 20, + "value": "\".StakeAccountValue\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 55737, - "length": 2, - "value": "11" + "offset": 27850, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55982, - "length": 2, - "value": "12" + "kind": "StringLiteral", + "offset": 27870, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56197, - "length": 2, - "value": "13" + "offset": 27892, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 56340, - "length": 2, - "value": "14" + "kind": "StringLiteral", + "offset": 27908, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56468, - "length": 2, - "value": "15" + "offset": 28341, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56618, - "length": 2, - "value": "16" + "offset": 28430, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56761, - "length": 2, - "value": "17" + "offset": 28735, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56881, - "length": 2, - "value": "18" + "offset": 28765, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 57030, - "length": 2, - "value": "19" + "offset": 28844, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57251, + "offset": 29074, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57316, + "offset": 29119, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57361, + "offset": 29180, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57426, - "length": 5, - "value": "false" + "offset": 29198, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57473, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 29422, + "length": 19, + "value": "\".WithdrawAllStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57532, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 29512, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57603, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 29532, + "length": 16, + "value": "\"stake_accounts\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 29974, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 30291, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57654, + "offset": 30521, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57715, + "offset": 30582, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57733, + "offset": 30600, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 57954, - "length": 16, - "value": "\".SigningOutput\"" + "offset": 30826, + "length": 21, + "value": "\".CreateTokenAccount\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58041, + "offset": 30918, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58057, - "length": 9, - "value": "\"encoded\"" + "offset": 30938, + "length": 14, + "value": "\"main_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58073, + "offset": 30959, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58089, - "length": 7, - "value": "\"error\"" + "offset": 30979, + "length": 20, + "value": "\"token_mint_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58103, + "offset": 31006, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58123, + "offset": 31026, "length": 15, - "value": "\"error_message\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 58145, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 58165, - "length": 13, - "value": "\"unsigned_tx\"" + "value": "\"token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58604, + "offset": 31467, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58688, + "offset": 31555, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58768, + "offset": 31648, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58857, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 59157, + "offset": 31958, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 59266, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 59393, + "offset": 32093, "length": 1, - "value": "3" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 59516, + "offset": 32220, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 59728, - "length": 5, - "value": "false" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59773, + "offset": 32450, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59832, + "offset": 32517, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59887, + "offset": 32576, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59948, + "offset": 32637, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59966, + "offset": 32655, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60190, - "length": 19, - "value": "\".PreSigningOutput\"" + "offset": 32876, + "length": 16, + "value": "\".TokenTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60280, + "offset": 32963, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60296, - "length": 9, - "value": "\"signers\"" + "offset": 32983, + "length": 20, + "value": "\"token_mint_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60312, + "offset": 33010, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60328, - "length": 6, - "value": "\"data\"" + "offset": 33030, + "length": 22, + "value": "\"sender_token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60341, + "offset": 33059, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60357, - "length": 7, - "value": "\"error\"" + "offset": 33079, + "length": 25, + "value": "\"recipient_token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60371, + "offset": 33111, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60391, - "length": 15, - "value": "\"error_message\"" + "offset": 33127, + "length": 8, + "value": "\"amount\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60832, + "offset": 33142, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 60915, - "length": 1, - "value": "2" + "kind": "StringLiteral", + "offset": 33158, + "length": 10, + "value": "\"decimals\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60995, + "offset": 33175, "length": 1, - "value": "3" + "value": "6" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 33191, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61075, + "offset": 33204, "length": 1, - "value": "4" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 33220, + "length": 12, + "value": "\"references\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61376, + "offset": 33658, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61486, + "offset": 33751, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61595, + "offset": 33846, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61722, + "offset": 33944, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 61940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 61983, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62028, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62148, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62166, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 1445, + "offset": 34027, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 2778, + "offset": 34112, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 3693, + "offset": 34193, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 4656, + "offset": 34511, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 6123, + "offset": 34650, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "Array", - "offset": 6208, - "length": 2, - "value": "[]" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 7815, + "offset": 34795, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 8630, + "offset": 34826, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 8687, + "offset": 34906, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 11672, + "offset": 34939, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16146, - "length": 18, - "value": "\"TW.Stellar.Proto\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16315, + "offset": 35021, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16331, - "length": 25, - "value": "\"Predicate_unconditional\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16568, - "length": 8, - "value": "\".Asset\"" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16647, + "offset": 35132, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16663, - "length": 8, - "value": "\"issuer\"" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16678, + "offset": 35255, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16694, - "length": 11, - "value": "\"alphanum4\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35485, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17131, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35556, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17214, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35633, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17511, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35680, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17632, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35731, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17828, + "offset": 35774, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17881, + "offset": 35829, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17942, + "offset": 35890, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17960, + "offset": 35908, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18191, + "offset": 36138, "length": 25, - "value": "\".OperationCreateAccount\"" + "value": "\".CreateAndTransferToken\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18287, + "offset": 36234, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18303, - "length": 13, - "value": "\"destination\"" + "offset": 36254, + "length": 24, + "value": "\"recipient_main_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18323, + "offset": 36285, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18339, - "length": 8, - "value": "\"amount\"" + "offset": 36305, + "length": 20, + "value": "\"token_mint_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18773, + "offset": 36332, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 18861, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 36352, + "length": 25, + "value": "\"recipient_token_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19164, + "offset": 36384, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 19195, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 36404, + "length": 22, + "value": "\"sender_token_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19274, + "offset": 36433, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19561, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19640, - "length": 4, - "value": "true" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 19865, - "length": 19, - "value": "\".OperationPayment\"" + "offset": 36449, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19955, + "offset": 36464, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 19971, - "length": 13, - "value": "\"destination\"" + "offset": 36480, + "length": 10, + "value": "\"decimals\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19991, + "offset": 36497, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 20007, - "length": 7, - "value": "\"asset\"" + "offset": 36513, + "length": 6, + "value": "\"memo\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20021, + "offset": 36526, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 20037, - "length": 8, - "value": "\"amount\"" + "offset": 36542, + "length": 12, + "value": "\"references\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20471, + "offset": 36980, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20559, + "offset": 37077, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20643, + "offset": 37170, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21242, + "offset": 37268, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21353, + "offset": 37363, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21388, + "offset": 37446, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21467, + "offset": 37531, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21695, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21789, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21850, - "length": 5, - "value": "false" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21868, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 37612, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22097, - "length": 23, - "value": "\".OperationChangeTrust\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 37938, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22191, + "offset": 38073, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22207, - "length": 7, - "value": "\"asset\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 38218, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22221, + "offset": 38357, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22241, - "length": 14, - "value": "\"valid_before\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 38388, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22681, + "offset": 38468, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22765, + "offset": 38501, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23355, + "offset": 38583, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23395, + "offset": 38694, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23479, + "offset": 38817, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23705, + "offset": 39073, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23762, + "offset": 39140, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23823, + "offset": 39217, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24058, - "length": 11, - "value": "\".Claimant\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24140, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24156, - "length": 9, - "value": "\"account\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24172, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24188, - "length": 11, - "value": "\"predicate\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24625, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24709, - "length": 1, - "value": "2" + "offset": 39288, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 25006, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 39335, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 25143, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 39386, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25347, + "offset": 39429, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25400, + "offset": 39484, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25461, + "offset": 39545, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25479, + "offset": 39563, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25719, - "length": 34, - "value": "\".OperationCreateClaimableBalance\"" + "offset": 39789, + "length": 21, + "value": "\".CreateNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25824, + "offset": 39881, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25840, - "length": 7, - "value": "\"asset\"" + "offset": 39901, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25854, + "offset": 39923, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25870, - "length": 8, - "value": "\"amount\"" + "offset": 39939, + "length": 6, + "value": "\"rent\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25885, + "offset": 39952, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25901, - "length": 11, - "value": "\"claimants\"" + "offset": 39972, + "length": 27, + "value": "\"nonce_account_private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26338, + "offset": 40425, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26422, + "offset": 40514, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26504, + "offset": 40595, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27094, + "offset": 40916, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27129, + "offset": 40945, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27208, + "offset": 41023, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27330, + "offset": 41169, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27578, + "offset": 41401, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27625, + "offset": 41444, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27678, + "offset": 41523, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27739, + "offset": 41584, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27757, + "offset": 41602, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 27996, - "length": 33, - "value": "\".OperationClaimClaimableBalance\"" + "offset": 41830, + "length": 23, + "value": "\".WithdrawNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 28100, + "offset": 41924, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 28120, - "length": 12, - "value": "\"balance_id\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 28558, - "length": 1, - "value": "1" + "offset": 41944, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 28859, + "offset": 41966, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29172, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 29407, - "length": 11, - "value": "\".MemoVoid\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29937, - "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 30154, + "offset": 41982, "length": 11, - "value": "\".MemoText\"" + "value": "\"recipient\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30236, + "offset": 42000, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 30252, - "length": 6, - "value": "\"text\"" + "offset": 42016, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30684, + "offset": 42449, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30972, + "offset": 42538, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31170, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31249, - "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 31464, - "length": 9, - "value": "\".MemoId\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 42624, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 31544, + "offset": 42929, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 31560, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 31990, + "offset": 43050, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32191, + "offset": 43080, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32266, + "offset": 43159, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32456, + "offset": 43395, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32517, + "offset": 43448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32535, + "offset": 43493, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 43554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 43572, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 32752, - "length": 11, - "value": "\".MemoHash\"" + "offset": 43799, + "length": 22, + "value": "\".AdvanceNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32834, + "offset": 43892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 32850, - "length": 6, - "value": "\"hash\"" + "offset": 43912, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 33282, + "offset": 44353, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 33568, + "offset": 44665, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33766, + "offset": 44899, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33827, + "offset": 44960, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33845, + "offset": 44978, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34066, + "offset": 45198, "length": 15, "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34152, + "offset": 45284, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34168, - "length": 5, - "value": "\"fee\"" + "offset": 45304, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34180, + "offset": 45324, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34196, - "length": 10, - "value": "\"sequence\"" + "offset": 45344, + "length": 18, + "value": "\"recent_blockhash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34213, + "offset": 45369, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34229, - "length": 9, - "value": "\"account\"" + "offset": 45389, + "length": 8, + "value": "\"v0_msg\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34245, + "offset": 45404, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34265, - "length": 13, - "value": "\"private_key\"" + "offset": 45424, + "length": 22, + "value": "\"transfer_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34285, + "offset": 45453, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34301, - "length": 12, - "value": "\"passphrase\"" + "offset": 45473, + "length": 28, + "value": "\"delegate_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34320, + "offset": 45508, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34340, - "length": 19, - "value": "\"op_create_account\"" + "offset": 45528, + "length": 30, + "value": "\"deactivate_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34366, + "offset": 45565, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34386, - "length": 12, - "value": "\"op_payment\"" + "offset": 45585, + "length": 34, + "value": "\"deactivate_all_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34405, + "offset": 45626, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34425, - "length": 17, - "value": "\"op_change_trust\"" + "offset": 45646, + "length": 22, + "value": "\"withdraw_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34449, + "offset": 45675, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 45695, + "length": 26, + "value": "\"withdraw_all_transaction\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 45728, "length": 2, - "value": "14" + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34470, - "length": 29, - "value": "\"op_create_claimable_balance\"" + "offset": 45749, + "length": 34, + "value": "\"create_token_account_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34506, + "offset": 45790, "length": 2, - "value": "15" + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34527, + "offset": 45811, "length": 28, - "value": "\"op_claim_claimable_balance\"" + "value": "\"token_transfer_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34562, - "length": 1, - "value": "9" + "offset": 45846, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34582, - "length": 11, - "value": "\"memo_void\"" + "offset": 45867, + "length": 39, + "value": "\"create_and_transfer_token_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34600, + "offset": 45913, "length": 2, - "value": "10" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34621, - "length": 11, - "value": "\"memo_text\"" + "offset": 45934, + "length": 22, + "value": "\"create_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34639, + "offset": 45963, "length": 2, - "value": "11" + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34660, - "length": 9, - "value": "\"memo_id\"" + "offset": 45984, + "length": 24, + "value": "\"withdraw_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34676, + "offset": 46015, "length": 2, - "value": "12" + "value": "19" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34697, - "length": 11, - "value": "\"memo_hash\"" + "offset": 46036, + "length": 23, + "value": "\"advance_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34715, + "offset": 46066, "length": 2, - "value": "13" + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34736, - "length": 18, - "value": "\"memo_return_hash\"" + "offset": 46083, + "length": 8, + "value": "\"sender\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34761, + "offset": 46098, "length": 2, - "value": "16" + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34782, - "length": 13, - "value": "\"time_bounds\"" + "offset": 46119, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35221, + "offset": 46141, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 46162, + "length": 23, + "value": "\"fee_payer_private_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 46192, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 46213, + "length": 11, + "value": "\"fee_payer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 46650, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35300, + "offset": 46736, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35384, + "offset": 46828, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35468, + "offset": 46908, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 46986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47066, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35554, + "offset": 47380, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47463, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47543, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35641, + "offset": 47867, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 35734, + "offset": 47952, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 35813, + "offset": 48032, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 36118, + "offset": 48360, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36205, + "offset": 48448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36284, + "offset": 48528, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 36577, + "offset": 48862, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36668, + "offset": 48945, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36747, + "offset": 49025, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37048, + "offset": 49339, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37127, + "offset": 49425, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37205, + "offset": 49505, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37495, + "offset": 49825, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37575, + "offset": 49914, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37653, + "offset": 49994, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37943, + "offset": 50328, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38021, + "offset": 50412, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38099, + "offset": 50492, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 38385, + "offset": 50816, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38465, + "offset": 50909, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38543, + "offset": 50989, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 38833, + "offset": 51331, "length": 2, "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38913, + "offset": 51420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38991, + "offset": 51500, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 39293, + "offset": 51812, "length": 2, "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 39396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 39475, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 51896, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 39798, + "offset": 51986, "length": 2, - "value": "15" + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 39900, + "offset": 52077, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 39979, + "offset": 52157, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40300, + "offset": 52473, "length": 2, - "value": "16" + "value": "17" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40807, - "length": 1, - "value": "0" + "offset": 52568, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40883, - "length": 1, - "value": "1" + "offset": 52654, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 52744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 52824, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40916, + "offset": 53652, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40997, + "offset": 53785, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 53815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41114, + "offset": 53896, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41236, + "offset": 54144, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41359, + "offset": 54370, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41597, + "offset": 54600, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41792, + "offset": 54836, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41995, + "offset": 55052, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42244, + "offset": 55274, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42436, + "offset": 55510, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42625, + "offset": 55737, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42818, + "offset": 55982, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43023, + "offset": 56197, "length": 2, "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43308, + "offset": 56340, "length": 2, "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43532, + "offset": 56468, "length": 2, "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43595, - "length": 1, - "value": "0" + "offset": 56618, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43678, + "offset": 56761, "length": 2, - "value": "16" + "value": "17" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 56881, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 57030, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43883, + "offset": 57251, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43934, + "offset": 57316, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43983, + "offset": 57361, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44038, + "offset": 57426, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44093, + "offset": 57473, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44156, + "offset": 57532, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44217, + "offset": 57603, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44272, + "offset": 57654, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44333, + "offset": 57715, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44351, + "offset": 57733, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44573, + "offset": 57954, "length": 16, "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44660, + "offset": 58041, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44676, - "length": 11, - "value": "\"signature\"" + "offset": 58057, + "length": 9, + "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44694, + "offset": 58073, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44710, + "offset": 58089, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44724, + "offset": 58103, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44744, + "offset": 58123, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45185, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45271, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45351, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45657, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45766, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45893, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46156, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 438, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 454, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 472, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 58145, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 58165, + "length": 13, + "value": "\"unsigned_tx\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 58604, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 454, + "offset": 58688, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 472, + "offset": 58768, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 58857, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 59157, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 454, + "offset": 59266, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 472, + "offset": 59393, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 59516, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "StringLiteral", - "offset": 576, - "length": 48, - "value": "\"Public Global Stellar Network ; September 2015\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "StringLiteral", - "offset": 651, - "length": 29, - "value": "\"Kin Mainnet ; December 2018\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59728, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59773, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59832, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 456, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 502, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 456, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59887, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59948, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 502, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59966, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60190, + "length": 19, + "value": "\".PreSigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 60280, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60296, + "length": 9, + "value": "\"signers\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 502, + "offset": 60312, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 491, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60328, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 60341, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 530, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60357, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 60371, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 491, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60391, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 60832, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 530, + "offset": 60915, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 60995, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 491, + "offset": 61075, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 61376, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 530, + "offset": 61486, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 61595, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 1182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 1277, + "offset": 61722, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 4630, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 61940, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 4669, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 61983, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5196, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62028, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5235, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62087, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "Array", - "offset": 5304, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5670, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62166, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5709, + "offset": 1268, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5846, + "offset": 1445, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5885, + "offset": 2778, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6255, + "offset": 3693, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6294, + "offset": 4656, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6333, + "offset": 6123, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "Array", - "offset": 6407, + "offset": 6208, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8224, + "offset": 7815, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8263, + "offset": 8630, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8939, + "offset": 8687, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 13675, + "offset": 11672, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 13714, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 16146, + "length": 18, + "value": "\"TW.Stellar.Proto\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 13749, + "offset": 16315, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20198, - "length": 20, - "value": "\"TW.Substrate.Proto\"" + "offset": 16331, + "length": 25, + "value": "\"Predicate_unconditional\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20422, - "length": 6, - "value": "\".Era\"" + "offset": 16568, + "length": 8, + "value": "\".Asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20499, + "offset": 16647, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20519, - "length": 14, - "value": "\"block_number\"" + "offset": 16663, + "length": 8, + "value": "\"issuer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20540, + "offset": 16678, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20556, - "length": 8, - "value": "\"period\"" + "offset": 16694, + "length": 11, + "value": "\"alphanum4\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20990, + "offset": 17131, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21078, + "offset": 17214, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 21293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21378, + "offset": 17511, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 21409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21489, + "offset": 17632, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21695, + "offset": 17828, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21742, + "offset": 17881, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21803, + "offset": 17942, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21821, + "offset": 17960, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22039, - "length": 10, - "value": "\".Balance\"" + "offset": 18191, + "length": 25, + "value": "\".OperationCreateAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22120, + "offset": 18287, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22136, - "length": 10, - "value": "\"transfer\"" + "offset": 18303, + "length": 13, + "value": "\"destination\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22153, + "offset": 18323, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22173, - "length": 16, - "value": "\"batch_transfer\"" + "offset": 18339, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22196, + "offset": 18773, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 22216, - "length": 16, - "value": "\"asset_transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 18861, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22239, + "offset": 19164, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 22259, - "length": 22, - "value": "\"batch_asset_transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 19195, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22707, + "offset": 19274, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 22796, + "offset": 19514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 22873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 23162, - "length": 1, - "value": "2" + "offset": 19561, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 23256, + "offset": 19622, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 23333, + "offset": 19640, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 19865, + "length": 19, + "value": "\".OperationPayment\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 19955, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 19971, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 23632, + "offset": 19991, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 23726, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 20007, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 23803, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20021, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 20037, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 24102, + "offset": 20471, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 24201, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20559, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 24278, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20643, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25199, + "offset": 21242, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25400, + "offset": 21353, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25601, + "offset": 21388, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25812, + "offset": 21467, "length": 1, - "value": "4" + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 21695, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 21742, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26056, + "offset": 21789, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26117, + "offset": 21850, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26135, + "offset": 21868, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26388, - "length": 11, - "value": "\".Transfer\"" + "offset": 22097, + "length": 23, + "value": "\".OperationChangeTrust\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26470, + "offset": 22191, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26490, - "length": 14, - "value": "\"module_index\"" + "offset": 22207, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26511, + "offset": 22221, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26531, + "offset": 22241, "length": 14, - "value": "\"method_index\"" + "value": "\"valid_before\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26552, + "offset": 22681, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26572, - "length": 12, - "value": "\"to_address\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26591, + "offset": 22765, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26607, - "length": 7, - "value": "\"value\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26621, + "offset": 23355, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26637, - "length": 6, - "value": "\"memo\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27069, + "offset": 23395, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27156, + "offset": 23479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27243, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23705, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27329, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23762, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27410, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23823, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27623, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24058, + "length": 11, + "value": "\".Claimant\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27707, + "offset": 24140, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27743, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24156, + "length": 9, + "value": "\"account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27827, + "offset": 24172, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27948, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24188, + "length": 11, + "value": "\"predicate\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 28060, + "offset": 24625, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 28171, + "offset": 24709, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28403, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28460, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 25006, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28513, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 25143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28558, + "offset": 25347, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28601, + "offset": 25400, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28662, + "offset": 25461, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28680, + "offset": 25479, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 28938, - "length": 16, - "value": "\".BatchTransfer\"" + "offset": 25719, + "length": 34, + "value": "\".OperationCreateClaimableBalance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29025, + "offset": 25824, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29045, - "length": 14, - "value": "\"module_index\"" + "offset": 25840, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29066, + "offset": 25854, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29086, - "length": 14, - "value": "\"method_index\"" + "offset": 25870, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29107, + "offset": 25885, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29123, + "offset": 25901, "length": 11, - "value": "\"transfers\"" + "value": "\"claimants\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29560, + "offset": 26338, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29647, + "offset": 26422, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29734, + "offset": 26504, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 29953, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30037, + "offset": 27094, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30073, + "offset": 27129, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30157, + "offset": 27208, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30279, + "offset": 27330, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30521, + "offset": 27578, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30578, + "offset": 27625, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30631, + "offset": 27678, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30692, + "offset": 27739, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30710, + "offset": 27757, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 30968, - "length": 16, - "value": "\".AssetTransfer\"" + "offset": 27996, + "length": 33, + "value": "\".OperationClaimClaimableBalance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31055, + "offset": 28100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31075, - "length": 14, - "value": "\"module_index\"" + "offset": 28120, + "length": 12, + "value": "\"balance_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 28558, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31096, + "offset": 28859, "length": 1, - "value": "2" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29111, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29190, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31116, - "length": 14, - "value": "\"method_index\"" + "offset": 29407, + "length": 11, + "value": "\".MemoVoid\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 31137, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29937, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31157, - "length": 12, - "value": "\"to_address\"" + "offset": 30154, + "length": 11, + "value": "\".MemoText\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31176, + "offset": 30236, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31192, - "length": 7, - "value": "\"value\"" + "offset": 30252, + "length": 6, + "value": "\"text\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31206, + "offset": 30684, "length": 1, - "value": "5" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 30972, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31170, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31231, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31249, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31226, - "length": 10, - "value": "\"asset_id\"" + "offset": 31464, + "length": 9, + "value": "\".MemoId\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31243, + "offset": 31544, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31263, - "length": 14, - "value": "\"fee_asset_id\"" + "offset": 31560, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31703, + "offset": 31990, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31790, + "offset": 32191, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31877, + "offset": 32266, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 31963, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32456, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 32044, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32535, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 32752, + "length": 11, + "value": "\".MemoHash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32128, + "offset": 32834, "length": 1, - "value": "6" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 32850, + "length": 6, + "value": "\"hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32347, + "offset": 33282, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32431, + "offset": 33568, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33766, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33827, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34066, + "length": 15, + "value": "\".SigningInput\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32467, + "offset": 34152, "length": 1, - "value": "0" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34168, + "length": 5, + "value": "\"fee\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32551, + "offset": 34180, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34196, + "length": 10, + "value": "\"sequence\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32672, + "offset": 34213, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34229, + "length": 9, + "value": "\"account\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32784, + "offset": 34245, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34265, + "length": 13, + "value": "\"private_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32816, + "offset": 34285, "length": 1, - "value": "0" + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34301, + "length": 12, + "value": "\"passphrase\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32897, + "offset": 34320, "length": 1, - "value": "5" + "value": "6" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34340, + "length": 19, + "value": "\"op_create_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32932, + "offset": 34366, "length": 1, - "value": "0" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34386, + "length": 12, + "value": "\"op_payment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33016, + "offset": 34405, "length": 1, - "value": "6" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33258, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34425, + "length": 17, + "value": "\"op_change_trust\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33315, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34449, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33368, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34470, + "length": 29, + "value": "\"op_create_claimable_balance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33413, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34506, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33462, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34527, + "length": 28, + "value": "\"op_claim_claimable_balance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33517, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34562, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33578, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34582, + "length": 11, + "value": "\"memo_void\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33596, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34600, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 33859, - "length": 21, - "value": "\".BatchAssetTransfer\"" + "offset": 34621, + "length": 11, + "value": "\"memo_text\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33951, - "length": 1, - "value": "1" + "offset": 34639, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 33971, - "length": 14, - "value": "\"module_index\"" + "offset": 34660, + "length": 9, + "value": "\"memo_id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33992, - "length": 1, - "value": "2" + "offset": 34676, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34012, - "length": 14, - "value": "\"method_index\"" + "offset": 34697, + "length": 11, + "value": "\"memo_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34033, - "length": 1, - "value": "3" + "offset": 34715, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34053, - "length": 14, - "value": "\"fee_asset_id\"" + "offset": 34736, + "length": 18, + "value": "\"memo_return_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34074, - "length": 1, - "value": "4" + "offset": 34761, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34090, - "length": 11, - "value": "\"transfers\"" + "offset": 34782, + "length": 13, + "value": "\"time_bounds\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34527, + "offset": 35221, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34614, + "offset": 35300, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34701, + "offset": 35384, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34788, + "offset": 35468, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35007, + "offset": 35554, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35091, + "offset": 35641, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35127, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 35734, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35211, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 35813, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35246, + "offset": 36118, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35330, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 36205, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 36284, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35452, + "offset": 36577, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35704, + "offset": 36668, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35761, - "length": 5, - "value": "false" + "offset": 36747, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37048, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35816, + "offset": 37127, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35869, - "length": 5, - "value": "false" + "offset": 37205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37495, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35930, + "offset": 37575, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35948, + "offset": 37653, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 36172, - "length": 16, - "value": "\".Authorization\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37943, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 36259, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38021, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 36279, - "length": 15, - "value": "\"join_identity\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38099, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 36720, - "length": 1, - "value": "1" + "offset": 38385, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 36819, + "offset": 38465, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 36896, + "offset": 38543, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 37723, - "length": 1, - "value": "1" + "offset": 38833, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 37955, + "offset": 38913, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38991, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 39293, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 38016, + "offset": 39396, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 38034, + "offset": 39475, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38303, - "length": 15, - "value": "\".JoinIdentity\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38389, - "length": 1, - "value": "1" + "offset": 39798, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38409, - "length": 14, - "value": "\"module_index\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 39900, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 38430, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 39979, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38450, - "length": 14, - "value": "\"method_index\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40300, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38471, + "offset": 40807, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38487, - "length": 8, - "value": "\"target\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40883, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38502, + "offset": 40916, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38518, - "length": 6, - "value": "\"data\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40997, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38531, + "offset": 41114, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38547, - "length": 8, - "value": "\"expiry\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 41236, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38981, + "offset": 41359, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39068, + "offset": 41597, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39155, + "offset": 41792, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39238, + "offset": 41995, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39321, + "offset": 42244, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39832, - "length": 1, - "value": "0" + "offset": 42436, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39916, - "length": 1, - "value": "1" + "offset": 42625, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39952, - "length": 1, - "value": "0" + "offset": 42818, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40036, - "length": 1, - "value": "2" + "offset": 43023, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40151, - "length": 1, - "value": "3" + "offset": 43308, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40261, - "length": 1, - "value": "4" + "offset": 43532, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40296, + "offset": 43595, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40376, - "length": 1, - "value": "5" + "offset": 43678, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40628, + "offset": 43883, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40685, + "offset": 43934, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40732, + "offset": 43983, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40777, + "offset": 44038, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40824, + "offset": 44093, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40885, + "offset": 44156, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40903, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 41197, - "length": 7, - "value": "\".Data\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 41275, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 41291, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 41723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 42009, - "length": 1, - "value": "1" + "offset": 44217, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42271, + "offset": 44272, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42332, + "offset": 44333, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42350, + "offset": 44351, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42641, - "length": 11, - "value": "\".AuthData\"" + "offset": 44573, + "length": 16, + "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42723, + "offset": 44660, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42739, - "length": 7, - "value": "\"asset\"" + "offset": 44676, + "length": 11, + "value": "\"signature\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42753, + "offset": 44694, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42769, - "length": 11, - "value": "\"extrinsic\"" + "offset": 44710, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42787, + "offset": 44724, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42803, - "length": 11, - "value": "\"portfolio\"" + "offset": 44744, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43240, + "offset": 45185, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43324, + "offset": 45271, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43412, + "offset": 45351, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44003, + "offset": 45657, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44122, + "offset": 45766, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44241, + "offset": 45893, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44505, + "offset": 46111, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44560, + "offset": 46156, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44615, + "offset": 46215, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44676, + "offset": 46276, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44694, + "offset": 46294, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 44913, - "length": 11, - "value": "\".Identity\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 44995, + "offset": 420, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 45015, - "length": 22, - "value": "\"join_identity_as_key\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 45463, + "offset": 438, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 45562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 45639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 46481, + "offset": 454, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46703, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46764, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46782, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47046, - "length": 20, - "value": "\".JoinIdentityAsKey\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47137, + "offset": 472, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47157, - "length": 14, - "value": "\"module_index\"" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47178, + "offset": 494, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47198, - "length": 14, - "value": "\"method_index\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47219, + "offset": 420, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47239, - "length": 9, - "value": "\"auth_id\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47674, + "offset": 438, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47761, + "offset": 454, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47848, + "offset": 472, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 48063, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48147, + "offset": 494, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48183, + "offset": 420, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48267, + "offset": 438, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48298, + "offset": 454, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48378, + "offset": 472, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48630, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48734, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48795, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48813, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49036, - "length": 15, - "value": "\".PolymeshCall\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 49122, + "offset": 494, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49142, - "length": 20, - "value": "\"authorization_call\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 49169, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49189, - "length": 15, - "value": "\"identity_call\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 49630, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 49716, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 48, + "value": "\"Public Global Stellar Network ; September 2015\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 49793, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 29, + "value": "\"Kin Mainnet ; December 2018\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 50100, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 50181, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 50258, - "length": 4, - "value": "true" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 51185, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 51384, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51638, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51717, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 51940, - "length": 15, - "value": "\".SigningInput\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 52026, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52046, - "length": 12, - "value": "\"block_hash\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 52065, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52085, - "length": 14, - "value": "\"genesis_hash\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 52106, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52122, - "length": 7, - "value": "\"nonce\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52136, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52156, - "length": 14, - "value": "\"spec_version\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52177, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52197, - "length": 21, - "value": "\"transaction_version\"" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52241, - "length": 5, - "value": "\"tip\"" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52253, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52269, + "offset": 513, "length": 5, - "value": "\"era\"" + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52281, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52301, - "length": 13, - "value": "\"private_key\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52321, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52337, - "length": 9, - "value": "\"network\"" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52353, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52374, - "length": 14, - "value": "\"balance_call\"" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52395, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52416, - "length": 15, - "value": "\"multi_address\"" + "offset": 513, + "length": 5, + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52438, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52459, - "length": 15, - "value": "\"polymesh_call\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52613, - "length": 1, - "value": "0" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52646, - "length": 1, - "value": "0" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52686, - "length": 1, - "value": "0" + "offset": 513, + "length": 5, + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 52821, + "offset": 433, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 52928, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54294, + "offset": 456, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54386, + "offset": 479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54480, + "offset": 502, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 54569, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54664, + "offset": 433, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54766, + "offset": 456, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54852, + "offset": 479, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54940, + "offset": 502, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 55033, + "offset": 433, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55123, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 55208, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 55294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55612, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55707, - "length": 2, - "value": "12" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56419, + "offset": 456, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56559, + "offset": 479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 56598, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56684, + "offset": 502, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56729, + "offset": 491, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56821, + "offset": 512, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56873, + "offset": 530, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56972, + "offset": 552, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57096, + "offset": 491, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57215, + "offset": 512, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57357, + "offset": 530, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57398, + "offset": 552, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57485, + "offset": 491, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57633, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 57684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57779, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57908, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58395, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58471, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58535, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58701, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58761, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58821, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58895, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58963, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59041, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59119, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59197, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59219, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59267, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59334, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59352, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 59576, - "length": 16, - "value": "\".SigningOutput\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 59663, + "offset": 512, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 59679, - "length": 9, - "value": "\"encoded\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 60114, + "offset": 530, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 60409, + "offset": 552, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60706, - "length": 4, - "value": "true" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Sui.pb.swift", diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.private.swiftinterface b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.private.swiftinterface index a2bd542..3670876 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name WalletCore // swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @@ -694,15 +694,12 @@ public struct AsnParser { } public typealias BarzContractAddressInput = WalletCore.TW_Barz_Proto_ContractAddressInput public struct TW_Barz_Proto_ContractAddressInput { + public var entryPoint: Swift.String public var factory: Swift.String - public var diamondCutFacet: Swift.String public var accountFacet: Swift.String public var verificationFacet: Swift.String - public var tokenReceiverFacet: Swift.String - public var diamondLoupeFacet: Swift.String - public var diamondInit: Swift.String public var facetRegistry: Swift.String - public var entryPoint: Swift.String + public var defaultFallback: Swift.String public var bytecode: Swift.String public var publicKey: Swift.String public var unknownFields: SwiftProtobuf.UnknownStorage @@ -2154,6 +2151,7 @@ public struct Cardano { public static func minAdaAmount(tokenBundle: Foundation.Data) -> Swift.UInt64 public static func outputMinAdaAmount(toAddress: Swift.String, tokenBundle: Foundation.Data, coinsPerUtxoByte: Swift.String) -> Swift.String? public static func getStakingAddress(baseAddress: Swift.String) -> Swift.String + public static func getByronAddress(publicKey: WalletCore.PublicKey) -> Swift.String } extension WalletCore.CoinType { public func address(string: Swift.String) -> WalletCore.AnyAddress? @@ -2342,6 +2340,9 @@ public enum CoinType : Swift.UInt32, Swift.CaseIterable { case rootstock case thetaFuel case confluxeSpace + case acala + case acalaEVM + case opBNBtestnet public init?(rawValue: Swift.UInt32) public typealias AllCases = [WalletCore.CoinType] public typealias RawValue = Swift.UInt32 @@ -3950,6 +3951,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case okc case thundertoken case cfxevm + case opbnb case gochain case meter case celo @@ -3964,6 +3966,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case kcc case zksync case heco + case acalaevm case metis case polygonzkevm case moonbeam @@ -7764,8 +7767,12 @@ public struct PBKDF2 { public static func hmacSha512(password: Foundation.Data, salt: Foundation.Data, iterations: Swift.UInt32, dkLen: Swift.UInt32) -> Foundation.Data? } public typealias PolkadotEra = WalletCore.TW_Polkadot_Proto_Era +public typealias PolkadotCustomCallIndices = WalletCore.TW_Polkadot_Proto_CustomCallIndices +public typealias PolkadotCallIndices = WalletCore.TW_Polkadot_Proto_CallIndices public typealias PolkadotBalance = WalletCore.TW_Polkadot_Proto_Balance public typealias PolkadotStaking = WalletCore.TW_Polkadot_Proto_Staking +public typealias PolkadotIdentity = WalletCore.TW_Polkadot_Proto_Identity +public typealias PolkadotPolymeshCall = WalletCore.TW_Polkadot_Proto_PolymeshCall public typealias PolkadotSigningInput = WalletCore.TW_Polkadot_Proto_SigningInput public typealias PolkadotSigningOutput = WalletCore.TW_Polkadot_Proto_SigningOutput public typealias PolkadotRewardDestination = WalletCore.TW_Polkadot_Proto_RewardDestination @@ -7791,6 +7798,25 @@ public struct TW_Polkadot_Proto_Era { public var unknownFields: SwiftProtobuf.UnknownStorage public init() } +public struct TW_Polkadot_Proto_CustomCallIndices { + public var moduleIndex: Swift.Int32 + public var methodIndex: Swift.Int32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() +} +public struct TW_Polkadot_Proto_CallIndices { + public var variant: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant? + public var custom: WalletCore.TW_Polkadot_Proto_CustomCallIndices { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_Variant : Swift.Equatable { + case custom(WalletCore.TW_Polkadot_Proto_CustomCallIndices) + public static func == (a: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant, b: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_Balance { public var messageOneof: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof? public var transfer: WalletCore.TW_Polkadot_Proto_Balance.Transfer { @@ -7801,23 +7827,80 @@ public struct TW_Polkadot_Proto_Balance { get set } + public var assetTransfer: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer { + get + set + } + public var batchAssetTransfer: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case transfer(WalletCore.TW_Polkadot_Proto_Balance.Transfer) case batchTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) + case assetTransfer(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) + case batchAssetTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) public static func == (a: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool } public struct Transfer { public var toAddress: Swift.String public var value: Foundation.Data + public var memo: Swift.String + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BatchTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.Transfer] public var unknownFields: SwiftProtobuf.UnknownStorage public init() } + public struct AssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var toAddress: Swift.String + public var value: Foundation.Data + public var assetID: Swift.UInt32 + public var feeAssetID: Swift.UInt32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct BatchAssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var feeAssetID: Swift.UInt32 + public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer] + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public struct TW_Polkadot_Proto_Staking { @@ -7875,6 +7958,14 @@ public struct TW_Polkadot_Proto_Staking { public var controller: Swift.String public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } @@ -7883,52 +7974,233 @@ public struct TW_Polkadot_Proto_Staking { public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BondExtra { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Unbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Rebond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct WithdrawUnbonded { public var slashingSpans: Swift.Int32 + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Nominate { public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct ChillAndUnbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Chill { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public init() +} +public struct TW_Polkadot_Proto_Identity { + public var messageOneof: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof? + public var joinIdentityAsKey: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey { + get + set + } + public var addAuthorization: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case joinIdentityAsKey(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) + case addAuthorization(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) + public static func == (a: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool + } + public struct JoinIdentityAsKey { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var authID: Swift.UInt64 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AddAuthorization { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var target: Swift.String + public var data: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData { + get + set + } + public var hasData: Swift.Bool { + get + } + public mutating func clearData() + public var expiry: Swift.UInt64 public var unknownFields: SwiftProtobuf.UnknownStorage + public struct DataMessage { + public var data: Foundation.Data + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AuthData { + public var asset: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasAsset: Swift.Bool { + get + } + public mutating func clearAsset() + public var extrinsic: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasExtrinsic: Swift.Bool { + get + } + public mutating func clearExtrinsic() + public var portfolio: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasPortfolio: Swift.Bool { + get + } + public mutating func clearPortfolio() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public init() } +public struct TW_Polkadot_Proto_PolymeshCall { + public var messageOneof: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof? + public var identityCall: WalletCore.TW_Polkadot_Proto_Identity { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case identityCall(WalletCore.TW_Polkadot_Proto_Identity) + public static func == (a: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_SigningInput { - public var blockHash: Foundation.Data - public var genesisHash: Foundation.Data - public var nonce: Swift.UInt64 - public var specVersion: Swift.UInt32 - public var transactionVersion: Swift.UInt32 - public var tip: Foundation.Data + public var blockHash: Foundation.Data { + get + set + } + public var genesisHash: Foundation.Data { + get + set + } + public var nonce: Swift.UInt64 { + get + set + } + public var specVersion: Swift.UInt32 { + get + set + } + public var transactionVersion: Swift.UInt32 { + get + set + } + public var tip: Foundation.Data { + get + set + } public var era: WalletCore.TW_Polkadot_Proto_Era { get set @@ -7937,9 +8209,22 @@ public struct TW_Polkadot_Proto_SigningInput { get } public mutating func clearEra() - public var privateKey: Foundation.Data - public var network: Swift.UInt32 - public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? + public var privateKey: Foundation.Data { + get + set + } + public var network: Swift.UInt32 { + get + set + } + public var multiAddress: Swift.Bool { + get + set + } + public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? { + get + set + } public var balanceCall: WalletCore.TW_Polkadot_Proto_Balance { get set @@ -7948,10 +8233,15 @@ public struct TW_Polkadot_Proto_SigningInput { get set } + public var polymeshCall: WalletCore.TW_Polkadot_Proto_PolymeshCall { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case balanceCall(WalletCore.TW_Polkadot_Proto_Balance) case stakingCall(WalletCore.TW_Polkadot_Proto_Staking) + case polymeshCall(WalletCore.TW_Polkadot_Proto_PolymeshCall) public static func == (a: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool } public init() @@ -7976,6 +8266,26 @@ extension WalletCore.TW_Polkadot_Proto_Era : SwiftProtobuf.Message, SwiftProtobu get } } +extension WalletCore.TW_Polkadot_Proto_CustomCallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices, rhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_CallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CallIndices, rhs: WalletCore.TW_Polkadot_Proto_CallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8006,6 +8316,26 @@ extension WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer : SwiftProtobuf.Mes get } } +extension WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Staking : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8106,28 +8436,88 @@ extension WalletCore.TW_Polkadot_Proto_Staking.Chill : SwiftProtobuf.Message, Sw get } } -extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity, rhs: WalletCore.TW_Polkadot_Proto_Identity) -> Swift.Bool public var hashValue: Swift.Int { get } } -extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool public var hashValue: Swift.Int { get } } -@_hasMissingDesignatedInitializers final public class PrivateKey { - public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_PolymeshCall, rhs: WalletCore.TW_Polkadot_Proto_PolymeshCall) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers final public class PrivateKey { + public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool final public var data: Foundation.Data { get } @@ -9296,419 +9686,6 @@ public enum StoredKeyEncryptionLevel : Swift.UInt32, Swift.CaseIterable { get } } -public typealias SubstrateEra = WalletCore.TW_Substrate_Proto_Era -public typealias SubstrateBalance = WalletCore.TW_Substrate_Proto_Balance -public typealias SubstrateAuthorization = WalletCore.TW_Substrate_Proto_Authorization -public typealias SubstrateIdentity = WalletCore.TW_Substrate_Proto_Identity -public typealias SubstratePolymeshCall = WalletCore.TW_Substrate_Proto_PolymeshCall -public typealias SubstrateSigningInput = WalletCore.TW_Substrate_Proto_SigningInput -public typealias SubstrateSigningOutput = WalletCore.TW_Substrate_Proto_SigningOutput -public struct TW_Substrate_Proto_Era { - public var blockNumber: Swift.UInt64 - public var period: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -public struct TW_Substrate_Proto_Balance { - public var messageOneof: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof? - public var transfer: WalletCore.TW_Substrate_Proto_Balance.Transfer { - get - set - } - public var batchTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer { - get - set - } - public var assetTransfer: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer { - get - set - } - public var batchAssetTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case transfer(WalletCore.TW_Substrate_Proto_Balance.Transfer) - case batchTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) - case assetTransfer(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) - case batchAssetTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) - public static func == (a: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool - } - public struct Transfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var memo: Swift.String - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.Transfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var assetID: Swift.UInt32 - public var feeAssetID: Swift.UInt32 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchAssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var feeAssetID: Swift.UInt32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.AssetTransfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_Authorization { - public var messageOneof: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof? - public var joinIdentity: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentity(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) - public static func == (a: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentity { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var target: Swift.String - public var data: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData { - get - set - } - public var hasData: Swift.Bool { - get - } - public mutating func clearData() - public var expiry: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public struct DataMessage { - public var data: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AuthData { - public var asset: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasAsset: Swift.Bool { - get - } - public mutating func clearAsset() - public var extrinsic: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasExtrinsic: Swift.Bool { - get - } - public mutating func clearExtrinsic() - public var portfolio: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasPortfolio: Swift.Bool { - get - } - public mutating func clearPortfolio() - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() - } - public init() -} -public struct TW_Substrate_Proto_Identity { - public var messageOneof: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof? - public var joinIdentityAsKey: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentityAsKey(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) - public static func == (a: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentityAsKey { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var authID: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_PolymeshCall { - public var messageOneof: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof? - public var authorizationCall: WalletCore.TW_Substrate_Proto_Authorization { - get - set - } - public var identityCall: WalletCore.TW_Substrate_Proto_Identity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case authorizationCall(WalletCore.TW_Substrate_Proto_Authorization) - case identityCall(WalletCore.TW_Substrate_Proto_Identity) - public static func == (a: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningInput { - public var blockHash: Foundation.Data { - get - set - } - public var genesisHash: Foundation.Data { - get - set - } - public var nonce: Swift.UInt64 { - get - set - } - public var specVersion: Swift.UInt32 { - get - set - } - public var transactionVersion: Swift.UInt32 { - get - set - } - public var tip: Foundation.Data { - get - set - } - public var era: WalletCore.TW_Substrate_Proto_Era { - get - set - } - public var hasEra: Swift.Bool { - get - } - public mutating func clearEra() - public var privateKey: Foundation.Data { - get - set - } - public var network: Swift.Int32 { - get - set - } - public var messageOneof: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof? { - get - set - } - public var balanceCall: WalletCore.TW_Substrate_Proto_Balance { - get - set - } - public var multiAddress: Swift.Bool { - get - set - } - public var polymeshCall: WalletCore.TW_Substrate_Proto_PolymeshCall { - get - set - } - public var hasPolymeshCall: Swift.Bool { - get - } - public mutating func clearPolymeshCall() - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case balanceCall(WalletCore.TW_Substrate_Proto_Balance) - public static func == (a: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningOutput { - public var encoded: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -extension WalletCore.TW_Substrate_Proto_Era : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Era, rhs: WalletCore.TW_Substrate_Proto_Era) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance, rhs: WalletCore.TW_Substrate_Proto_Balance) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.Transfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.Transfer, rhs: WalletCore.TW_Substrate_Proto_Balance.Transfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization, rhs: WalletCore.TW_Substrate_Proto_Authorization) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity, rhs: WalletCore.TW_Substrate_Proto_Identity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_PolymeshCall, rhs: WalletCore.TW_Substrate_Proto_PolymeshCall) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningInput, rhs: WalletCore.TW_Substrate_Proto_SigningInput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningOutput, rhs: WalletCore.TW_Substrate_Proto_SigningOutput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers final public class SubstrateAddress : WalletCore.Address { - public static func == (lhs: WalletCore.SubstrateAddress, rhs: WalletCore.SubstrateAddress) -> Swift.Bool - public static func isValidString(string: Swift.String, network: Swift.Int32) -> Swift.Bool - final public var description: Swift.String { - get - } - public init?(string: Swift.String, network: Swift.Int32) - public init(publicKey: WalletCore.PublicKey, network: Swift.Int32) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class SubstrateSigner { - public static func message(data: Foundation.Data) -> Foundation.Data - public static func transaction(data: Foundation.Data, publicKey: Foundation.Data, signature: Foundation.Data) -> Foundation.Data - @objc deinit -} public typealias SuiSignDirect = WalletCore.TW_Sui_Proto_SignDirect public typealias SuiSigningInput = WalletCore.TW_Sui_Proto_SigningInput public typealias SuiSigningOutput = WalletCore.TW_Sui_Proto_SigningOutput @@ -11140,6 +11117,8 @@ extension WalletCore.TW_Waves_Proto_SigningOutput : SwiftProtobuf.Message, Swift } public struct WebAuthn { public static func getPublicKey(attestationObject: Foundation.Data) -> WalletCore.PublicKey? + public static func getRSValues(signature: Foundation.Data) -> Foundation.Data + public static func reconstructOriginalMessage(authenticatorData: Foundation.Data, clientDataJSON: Foundation.Data) -> Foundation.Data } public typealias ZilliqaTransaction = WalletCore.TW_Zilliqa_Proto_Transaction public typealias ZilliqaSigningInput = WalletCore.TW_Zilliqa_Proto_SigningInput diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftdoc b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftdoc index 695eda9..4616f35 100644 Binary files a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftdoc and b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftinterface b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftinterface index a2bd542..3670876 100644 --- a/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftinterface +++ b/WalletCore.xcframework/ios-arm64/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name WalletCore // swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @@ -694,15 +694,12 @@ public struct AsnParser { } public typealias BarzContractAddressInput = WalletCore.TW_Barz_Proto_ContractAddressInput public struct TW_Barz_Proto_ContractAddressInput { + public var entryPoint: Swift.String public var factory: Swift.String - public var diamondCutFacet: Swift.String public var accountFacet: Swift.String public var verificationFacet: Swift.String - public var tokenReceiverFacet: Swift.String - public var diamondLoupeFacet: Swift.String - public var diamondInit: Swift.String public var facetRegistry: Swift.String - public var entryPoint: Swift.String + public var defaultFallback: Swift.String public var bytecode: Swift.String public var publicKey: Swift.String public var unknownFields: SwiftProtobuf.UnknownStorage @@ -2154,6 +2151,7 @@ public struct Cardano { public static func minAdaAmount(tokenBundle: Foundation.Data) -> Swift.UInt64 public static func outputMinAdaAmount(toAddress: Swift.String, tokenBundle: Foundation.Data, coinsPerUtxoByte: Swift.String) -> Swift.String? public static func getStakingAddress(baseAddress: Swift.String) -> Swift.String + public static func getByronAddress(publicKey: WalletCore.PublicKey) -> Swift.String } extension WalletCore.CoinType { public func address(string: Swift.String) -> WalletCore.AnyAddress? @@ -2342,6 +2340,9 @@ public enum CoinType : Swift.UInt32, Swift.CaseIterable { case rootstock case thetaFuel case confluxeSpace + case acala + case acalaEVM + case opBNBtestnet public init?(rawValue: Swift.UInt32) public typealias AllCases = [WalletCore.CoinType] public typealias RawValue = Swift.UInt32 @@ -3950,6 +3951,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case okc case thundertoken case cfxevm + case opbnb case gochain case meter case celo @@ -3964,6 +3966,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case kcc case zksync case heco + case acalaevm case metis case polygonzkevm case moonbeam @@ -7764,8 +7767,12 @@ public struct PBKDF2 { public static func hmacSha512(password: Foundation.Data, salt: Foundation.Data, iterations: Swift.UInt32, dkLen: Swift.UInt32) -> Foundation.Data? } public typealias PolkadotEra = WalletCore.TW_Polkadot_Proto_Era +public typealias PolkadotCustomCallIndices = WalletCore.TW_Polkadot_Proto_CustomCallIndices +public typealias PolkadotCallIndices = WalletCore.TW_Polkadot_Proto_CallIndices public typealias PolkadotBalance = WalletCore.TW_Polkadot_Proto_Balance public typealias PolkadotStaking = WalletCore.TW_Polkadot_Proto_Staking +public typealias PolkadotIdentity = WalletCore.TW_Polkadot_Proto_Identity +public typealias PolkadotPolymeshCall = WalletCore.TW_Polkadot_Proto_PolymeshCall public typealias PolkadotSigningInput = WalletCore.TW_Polkadot_Proto_SigningInput public typealias PolkadotSigningOutput = WalletCore.TW_Polkadot_Proto_SigningOutput public typealias PolkadotRewardDestination = WalletCore.TW_Polkadot_Proto_RewardDestination @@ -7791,6 +7798,25 @@ public struct TW_Polkadot_Proto_Era { public var unknownFields: SwiftProtobuf.UnknownStorage public init() } +public struct TW_Polkadot_Proto_CustomCallIndices { + public var moduleIndex: Swift.Int32 + public var methodIndex: Swift.Int32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() +} +public struct TW_Polkadot_Proto_CallIndices { + public var variant: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant? + public var custom: WalletCore.TW_Polkadot_Proto_CustomCallIndices { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_Variant : Swift.Equatable { + case custom(WalletCore.TW_Polkadot_Proto_CustomCallIndices) + public static func == (a: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant, b: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_Balance { public var messageOneof: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof? public var transfer: WalletCore.TW_Polkadot_Proto_Balance.Transfer { @@ -7801,23 +7827,80 @@ public struct TW_Polkadot_Proto_Balance { get set } + public var assetTransfer: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer { + get + set + } + public var batchAssetTransfer: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case transfer(WalletCore.TW_Polkadot_Proto_Balance.Transfer) case batchTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) + case assetTransfer(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) + case batchAssetTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) public static func == (a: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool } public struct Transfer { public var toAddress: Swift.String public var value: Foundation.Data + public var memo: Swift.String + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BatchTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.Transfer] public var unknownFields: SwiftProtobuf.UnknownStorage public init() } + public struct AssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var toAddress: Swift.String + public var value: Foundation.Data + public var assetID: Swift.UInt32 + public var feeAssetID: Swift.UInt32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct BatchAssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var feeAssetID: Swift.UInt32 + public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer] + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public struct TW_Polkadot_Proto_Staking { @@ -7875,6 +7958,14 @@ public struct TW_Polkadot_Proto_Staking { public var controller: Swift.String public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } @@ -7883,52 +7974,233 @@ public struct TW_Polkadot_Proto_Staking { public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BondExtra { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Unbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Rebond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct WithdrawUnbonded { public var slashingSpans: Swift.Int32 + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Nominate { public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct ChillAndUnbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Chill { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public init() +} +public struct TW_Polkadot_Proto_Identity { + public var messageOneof: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof? + public var joinIdentityAsKey: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey { + get + set + } + public var addAuthorization: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case joinIdentityAsKey(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) + case addAuthorization(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) + public static func == (a: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool + } + public struct JoinIdentityAsKey { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var authID: Swift.UInt64 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AddAuthorization { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var target: Swift.String + public var data: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData { + get + set + } + public var hasData: Swift.Bool { + get + } + public mutating func clearData() + public var expiry: Swift.UInt64 public var unknownFields: SwiftProtobuf.UnknownStorage + public struct DataMessage { + public var data: Foundation.Data + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AuthData { + public var asset: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasAsset: Swift.Bool { + get + } + public mutating func clearAsset() + public var extrinsic: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasExtrinsic: Swift.Bool { + get + } + public mutating func clearExtrinsic() + public var portfolio: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasPortfolio: Swift.Bool { + get + } + public mutating func clearPortfolio() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public init() } +public struct TW_Polkadot_Proto_PolymeshCall { + public var messageOneof: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof? + public var identityCall: WalletCore.TW_Polkadot_Proto_Identity { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case identityCall(WalletCore.TW_Polkadot_Proto_Identity) + public static func == (a: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_SigningInput { - public var blockHash: Foundation.Data - public var genesisHash: Foundation.Data - public var nonce: Swift.UInt64 - public var specVersion: Swift.UInt32 - public var transactionVersion: Swift.UInt32 - public var tip: Foundation.Data + public var blockHash: Foundation.Data { + get + set + } + public var genesisHash: Foundation.Data { + get + set + } + public var nonce: Swift.UInt64 { + get + set + } + public var specVersion: Swift.UInt32 { + get + set + } + public var transactionVersion: Swift.UInt32 { + get + set + } + public var tip: Foundation.Data { + get + set + } public var era: WalletCore.TW_Polkadot_Proto_Era { get set @@ -7937,9 +8209,22 @@ public struct TW_Polkadot_Proto_SigningInput { get } public mutating func clearEra() - public var privateKey: Foundation.Data - public var network: Swift.UInt32 - public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? + public var privateKey: Foundation.Data { + get + set + } + public var network: Swift.UInt32 { + get + set + } + public var multiAddress: Swift.Bool { + get + set + } + public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? { + get + set + } public var balanceCall: WalletCore.TW_Polkadot_Proto_Balance { get set @@ -7948,10 +8233,15 @@ public struct TW_Polkadot_Proto_SigningInput { get set } + public var polymeshCall: WalletCore.TW_Polkadot_Proto_PolymeshCall { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case balanceCall(WalletCore.TW_Polkadot_Proto_Balance) case stakingCall(WalletCore.TW_Polkadot_Proto_Staking) + case polymeshCall(WalletCore.TW_Polkadot_Proto_PolymeshCall) public static func == (a: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool } public init() @@ -7976,6 +8266,26 @@ extension WalletCore.TW_Polkadot_Proto_Era : SwiftProtobuf.Message, SwiftProtobu get } } +extension WalletCore.TW_Polkadot_Proto_CustomCallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices, rhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_CallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CallIndices, rhs: WalletCore.TW_Polkadot_Proto_CallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8006,6 +8316,26 @@ extension WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer : SwiftProtobuf.Mes get } } +extension WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Staking : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8106,28 +8436,88 @@ extension WalletCore.TW_Polkadot_Proto_Staking.Chill : SwiftProtobuf.Message, Sw get } } -extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity, rhs: WalletCore.TW_Polkadot_Proto_Identity) -> Swift.Bool public var hashValue: Swift.Int { get } } -extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool public var hashValue: Swift.Int { get } } -@_hasMissingDesignatedInitializers final public class PrivateKey { - public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_PolymeshCall, rhs: WalletCore.TW_Polkadot_Proto_PolymeshCall) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers final public class PrivateKey { + public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool final public var data: Foundation.Data { get } @@ -9296,419 +9686,6 @@ public enum StoredKeyEncryptionLevel : Swift.UInt32, Swift.CaseIterable { get } } -public typealias SubstrateEra = WalletCore.TW_Substrate_Proto_Era -public typealias SubstrateBalance = WalletCore.TW_Substrate_Proto_Balance -public typealias SubstrateAuthorization = WalletCore.TW_Substrate_Proto_Authorization -public typealias SubstrateIdentity = WalletCore.TW_Substrate_Proto_Identity -public typealias SubstratePolymeshCall = WalletCore.TW_Substrate_Proto_PolymeshCall -public typealias SubstrateSigningInput = WalletCore.TW_Substrate_Proto_SigningInput -public typealias SubstrateSigningOutput = WalletCore.TW_Substrate_Proto_SigningOutput -public struct TW_Substrate_Proto_Era { - public var blockNumber: Swift.UInt64 - public var period: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -public struct TW_Substrate_Proto_Balance { - public var messageOneof: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof? - public var transfer: WalletCore.TW_Substrate_Proto_Balance.Transfer { - get - set - } - public var batchTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer { - get - set - } - public var assetTransfer: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer { - get - set - } - public var batchAssetTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case transfer(WalletCore.TW_Substrate_Proto_Balance.Transfer) - case batchTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) - case assetTransfer(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) - case batchAssetTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) - public static func == (a: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool - } - public struct Transfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var memo: Swift.String - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.Transfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var assetID: Swift.UInt32 - public var feeAssetID: Swift.UInt32 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchAssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var feeAssetID: Swift.UInt32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.AssetTransfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_Authorization { - public var messageOneof: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof? - public var joinIdentity: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentity(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) - public static func == (a: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentity { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var target: Swift.String - public var data: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData { - get - set - } - public var hasData: Swift.Bool { - get - } - public mutating func clearData() - public var expiry: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public struct DataMessage { - public var data: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AuthData { - public var asset: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasAsset: Swift.Bool { - get - } - public mutating func clearAsset() - public var extrinsic: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasExtrinsic: Swift.Bool { - get - } - public mutating func clearExtrinsic() - public var portfolio: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasPortfolio: Swift.Bool { - get - } - public mutating func clearPortfolio() - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() - } - public init() -} -public struct TW_Substrate_Proto_Identity { - public var messageOneof: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof? - public var joinIdentityAsKey: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentityAsKey(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) - public static func == (a: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentityAsKey { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var authID: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_PolymeshCall { - public var messageOneof: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof? - public var authorizationCall: WalletCore.TW_Substrate_Proto_Authorization { - get - set - } - public var identityCall: WalletCore.TW_Substrate_Proto_Identity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case authorizationCall(WalletCore.TW_Substrate_Proto_Authorization) - case identityCall(WalletCore.TW_Substrate_Proto_Identity) - public static func == (a: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningInput { - public var blockHash: Foundation.Data { - get - set - } - public var genesisHash: Foundation.Data { - get - set - } - public var nonce: Swift.UInt64 { - get - set - } - public var specVersion: Swift.UInt32 { - get - set - } - public var transactionVersion: Swift.UInt32 { - get - set - } - public var tip: Foundation.Data { - get - set - } - public var era: WalletCore.TW_Substrate_Proto_Era { - get - set - } - public var hasEra: Swift.Bool { - get - } - public mutating func clearEra() - public var privateKey: Foundation.Data { - get - set - } - public var network: Swift.Int32 { - get - set - } - public var messageOneof: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof? { - get - set - } - public var balanceCall: WalletCore.TW_Substrate_Proto_Balance { - get - set - } - public var multiAddress: Swift.Bool { - get - set - } - public var polymeshCall: WalletCore.TW_Substrate_Proto_PolymeshCall { - get - set - } - public var hasPolymeshCall: Swift.Bool { - get - } - public mutating func clearPolymeshCall() - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case balanceCall(WalletCore.TW_Substrate_Proto_Balance) - public static func == (a: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningOutput { - public var encoded: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -extension WalletCore.TW_Substrate_Proto_Era : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Era, rhs: WalletCore.TW_Substrate_Proto_Era) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance, rhs: WalletCore.TW_Substrate_Proto_Balance) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.Transfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.Transfer, rhs: WalletCore.TW_Substrate_Proto_Balance.Transfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization, rhs: WalletCore.TW_Substrate_Proto_Authorization) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity, rhs: WalletCore.TW_Substrate_Proto_Identity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_PolymeshCall, rhs: WalletCore.TW_Substrate_Proto_PolymeshCall) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningInput, rhs: WalletCore.TW_Substrate_Proto_SigningInput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningOutput, rhs: WalletCore.TW_Substrate_Proto_SigningOutput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers final public class SubstrateAddress : WalletCore.Address { - public static func == (lhs: WalletCore.SubstrateAddress, rhs: WalletCore.SubstrateAddress) -> Swift.Bool - public static func isValidString(string: Swift.String, network: Swift.Int32) -> Swift.Bool - final public var description: Swift.String { - get - } - public init?(string: Swift.String, network: Swift.Int32) - public init(publicKey: WalletCore.PublicKey, network: Swift.Int32) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class SubstrateSigner { - public static func message(data: Foundation.Data) -> Foundation.Data - public static func transaction(data: Foundation.Data, publicKey: Foundation.Data, signature: Foundation.Data) -> Foundation.Data - @objc deinit -} public typealias SuiSignDirect = WalletCore.TW_Sui_Proto_SignDirect public typealias SuiSigningInput = WalletCore.TW_Sui_Proto_SigningInput public typealias SuiSigningOutput = WalletCore.TW_Sui_Proto_SigningOutput @@ -11140,6 +11117,8 @@ extension WalletCore.TW_Waves_Proto_SigningOutput : SwiftProtobuf.Message, Swift } public struct WebAuthn { public static func getPublicKey(attestationObject: Foundation.Data) -> WalletCore.PublicKey? + public static func getRSValues(signature: Foundation.Data) -> Foundation.Data + public static func reconstructOriginalMessage(authenticatorData: Foundation.Data, clientDataJSON: Foundation.Data) -> Foundation.Data } public typealias ZilliqaTransaction = WalletCore.TW_Zilliqa_Proto_Transaction public typealias ZilliqaSigningInput = WalletCore.TW_Zilliqa_Proto_SigningInput diff --git a/WalletCore.xcframework/ios-arm64/WalletCore.framework/WalletCore b/WalletCore.xcframework/ios-arm64/WalletCore.framework/WalletCore index 4c924bf..c267f08 100755 Binary files a/WalletCore.xcframework/ios-arm64/WalletCore.framework/WalletCore and b/WalletCore.xcframework/ios-arm64/WalletCore.framework/WalletCore differ diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCardano.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCardano.h index cef845b..0892d61 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCardano.h +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCardano.h @@ -42,4 +42,10 @@ TWString *_Nullable TWCardanoOutputMinAdaAmount(TWString *_Nonnull toAddress, TW TW_EXPORT_STATIC_METHOD TWString *_Nonnull TWCardanoGetStakingAddress(TWString *_Nonnull baseAddress) TW_VISIBILITY_DEFAULT; +/// Return the legacy(byron) address. +/// \param publicKey A valid public key with TWPublicKeyTypeED25519Cardano type. +/// \return the legacy(byron) address, as string, or empty string on error. +TW_EXPORT_STATIC_METHOD +TWString *_Nonnull TWCardanoGetByronAddress(struct TWPublicKey *_Nonnull publicKey); + TW_EXTERN_C_END diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCoinType.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCoinType.h index af23f26..c6de3d4 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCoinType.h +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWCoinType.h @@ -166,6 +166,9 @@ enum TWCoinType { TWCoinTypeRootstock = 137, TWCoinTypeThetaFuel = 361, TWCoinTypeConfluxeSpace = 1030, + TWCoinTypeAcala = 787, + TWCoinTypeAcalaEVM = 10000787, + TWCoinTypeOpBNBtestnet = 5611, }; /// Returns the blockchain for a coin type. diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWEthereumChainID.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWEthereumChainID.h index 50bfaef..900ea01 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWEthereumChainID.h +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWEthereumChainID.h @@ -29,6 +29,7 @@ enum TWEthereumChainID { TWEthereumChainIDOkc = 66, TWEthereumChainIDThundertoken = 108, TWEthereumChainIDCfxevm = 1030, + TWEthereumChainIDOpbnb = 5611, TWEthereumChainIDGochain = 60, TWEthereumChainIDMeter = 82, TWEthereumChainIDCelo = 42220, @@ -43,6 +44,7 @@ enum TWEthereumChainID { TWEthereumChainIDKcc = 321, TWEthereumChainIDZksync = 324, TWEthereumChainIDHeco = 128, + TWEthereumChainIDAcalaevm = 787, TWEthereumChainIDMetis = 1088, TWEthereumChainIDPolygonzkevm = 1101, TWEthereumChainIDMoonbeam = 1284, diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWSubstrateAddress.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWSubstrateAddress.h deleted file mode 100644 index 9b059b0..0000000 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWSubstrateAddress.h +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright © 2017-2023 Trust Wallet. -// -// This file is part of Trust. The full Trust copyright notice, including -// terms governing use, modification, and redistribution, is contained in the -// file LICENSE at the root of the source code distribution tree. - -#pragma once - -#include "TWBase.h" -#include "TWData.h" -#include "TWHRP.h" -#include "TWString.h" - -// TODO: Adjust definitions below - -TW_EXTERN_C_BEGIN - -struct TWPublicKey; - -/// Represents a Substrate address. -TW_EXPORT_CLASS -struct TWSubstrateAddress; - -/// Compares two addresses for equality. -TW_EXPORT_STATIC_METHOD -bool TWSubstrateAddressEqual(struct TWSubstrateAddress *_Nonnull lhs, struct TWSubstrateAddress *_Nonnull rhs); - -/// Determines if the string is a valid Substrate address. -TW_EXPORT_STATIC_METHOD -bool TWSubstrateAddressIsValidString(TWString *_Nonnull string, int32_t network); - -/// Creates an address from a string representaion. -TW_EXPORT_STATIC_METHOD -struct TWSubstrateAddress *_Nullable TWSubstrateAddressCreateWithString(TWString *_Nonnull string, int32_t network); - -/// Creates an address from a public key. -TW_EXPORT_STATIC_METHOD -struct TWSubstrateAddress *_Nonnull TWSubstrateAddressCreateWithPublicKey(struct TWPublicKey *_Nonnull publicKey, int32_t network); - -/// Delete address object -TW_EXPORT_METHOD -void TWSubstrateAddressDelete(struct TWSubstrateAddress *_Nonnull address); - -/// Returns the address string representation. -TW_EXPORT_PROPERTY -TWString *_Nonnull TWSubstrateAddressDescription(struct TWSubstrateAddress *_Nonnull address); - -TW_EXTERN_C_END \ No newline at end of file diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWSubstrateSigner.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWSubstrateSigner.h deleted file mode 100644 index cac91c1..0000000 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWSubstrateSigner.h +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright © 2017-2023 Trust Wallet. -// -// This file is part of Trust. The full Trust copyright notice, including -// terms governing use, modification, and redistribution, is contained in the -// file LICENSE at the root of the source code distribution tree. - -#pragma once - -#include "TWBase.h" -#include "TWData.h" -#include "TWSubstrateSigner.h" - -TW_EXTERN_C_BEGIN - -TW_EXPORT_CLASS -struct TWSubstrateSigner; - -/// Builds a message to be signed -TW_EXPORT_STATIC_METHOD -TWData *_Nonnull TWSubstrateSignerMessage(TWData *_Nonnull data); - -/// Builds a transaction to be broadcasted -TW_EXPORT_STATIC_METHOD -TWData *_Nonnull TWSubstrateSignerTransaction(TWData *_Nonnull data, TWData *_Nonnull publicKey, TWData *_Nonnull signature); - -TW_EXTERN_C_END diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWWebAuthn.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWWebAuthn.h index 073fa16..4d988da 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWWebAuthn.h +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/TWWebAuthn.h @@ -20,4 +20,19 @@ struct TWWebAuthn; /// \return Public key. TW_EXPORT_STATIC_METHOD struct TWPublicKey *_Nullable TWWebAuthnGetPublicKey(TWData *_Nonnull attestationObject); + +/// Uses ASN parser to extract r and s values from a webauthn signature +/// +/// \param signature ASN encoded webauthn signature: https://www.w3.org/TR/webauthn-2/#sctn-signature-attestation-types +/// \return Concatenated r and s values. +TW_EXPORT_STATIC_METHOD +TWData *_Nonnull TWWebAuthnGetRSValues(TWData *_Nonnull signature); + +/// Reconstructs the original message that was signed via P256 curve. Can be used for signature validation. +/// +/// \param authenticatorData Authenticator Data: https://www.w3.org/TR/webauthn-2/#authenticator-data +/// \param clientDataJSON clientDataJSON: https://www.w3.org/TR/webauthn-2/#dom-authenticatorresponse-clientdatajson +/// \return original messages. +TW_EXPORT_STATIC_METHOD +TWData *_Nonnull TWWebAuthnReconstructOriginalMessage(TWData* _Nonnull authenticatorData, TWData* _Nonnull clientDataJSON); TW_EXTERN_C_END \ No newline at end of file diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore-Swift.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore-Swift.h index 97f597f..7dd0501 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore-Swift.h +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) #ifndef WALLETCORE_SWIFT_H #define WALLETCORE_SWIFT_H #pragma clang diagnostic push @@ -290,7 +290,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) #ifndef WALLETCORE_SWIFT_H #define WALLETCORE_SWIFT_H #pragma clang diagnostic push diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore.h b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore.h index cbaab18..72e6b75 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore.h +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Headers/WalletCore.h @@ -76,8 +76,6 @@ FOUNDATION_EXPORT const unsigned char WalletCoreVersionString[]; #include "TWStoredKey.h" #include "TWStoredKeyEncryption.h" #include "TWStoredKeyEncryptionLevel.h" -#include "TWSubstrateAddress.h" -#include "TWSubstrateSigner.h" #include "TWTHORChainSwap.h" #include "TWTezosMessageSigner.h" #include "TWTransactionCompiler.h" diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Info.plist b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Info.plist index 938c572..7803abd 100644 Binary files a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Info.plist and b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Info.plist differ diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.abi.json b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.abi.json index 4c1b4b5..a907bf9 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -22868,8 +22868,8 @@ "children": [ { "kind": "Var", - "name": "factory", - "printedName": "factory", + "name": "entryPoint", + "printedName": "entryPoint", "children": [ { "kind": "TypeNominal", @@ -22879,8 +22879,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -22903,8 +22903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -22927,8 +22927,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -22945,8 +22945,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -22955,8 +22955,8 @@ }, { "kind": "Var", - "name": "diamondCutFacet", - "printedName": "diamondCutFacet", + "name": "factory", + "printedName": "factory", "children": [ { "kind": "TypeNominal", @@ -22966,8 +22966,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -22990,8 +22990,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -23014,8 +23014,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -23032,8 +23032,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -23059,7 +23059,8 @@ "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -23212,264 +23213,6 @@ } ] }, - { - "kind": "Var", - "name": "tokenReceiverFacet", - "printedName": "tokenReceiverFacet", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "diamondLoupeFacet", - "printedName": "diamondLoupeFacet", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "diamondInit", - "printedName": "diamondInit", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, { "kind": "Var", "name": "facetRegistry", @@ -23558,8 +23301,8 @@ }, { "kind": "Var", - "name": "entryPoint", - "printedName": "entryPoint", + "name": "defaultFallback", + "printedName": "defaultFallback", "children": [ { "kind": "TypeNominal", @@ -23569,14 +23312,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -23593,8 +23335,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -23617,8 +23359,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -23635,8 +23377,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -72508,6 +72250,35 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getByronAddress", + "printedName": "getByronAddress(publicKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore7CardanoV15getByronAddress9publicKeySSAA06PublicH0C_tFZ", + "mangledName": "$s10WalletCore7CardanoV15getByronAddress9publicKeySSAA06PublicH0C_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Struct", @@ -77566,6 +77337,117 @@ "mangledName": "$s10WalletCore8CoinTypeO13confluxeSpaceyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "acala", + "printedName": "acala", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO5acalayA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO5acalayA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "acalaEVM", + "printedName": "acalaEVM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO8acalaEVMyA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO8acalaEVMyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opBNBtestnet", + "printedName": "opBNBtestnet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO12opBNBtestnetyA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO12opBNBtestnetyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "rawValue", @@ -130891,6 +130773,43 @@ "mangledName": "$s10WalletCore15EthereumChainIDO6cfxevmyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "opbnb", + "printedName": "opbnb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.EthereumChainID.Type) -> WalletCore.EthereumChainID", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.EthereumChainID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15EthereumChainIDO5opbnbyA2CmF", + "mangledName": "$s10WalletCore15EthereumChainIDO5opbnbyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "gochain", @@ -131409,6 +131328,43 @@ "mangledName": "$s10WalletCore15EthereumChainIDO4hecoyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "acalaevm", + "printedName": "acalaevm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.EthereumChainID.Type) -> WalletCore.EthereumChainID", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.EthereumChainID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15EthereumChainIDO8acalaevmyA2CmF", + "mangledName": "$s10WalletCore15EthereumChainIDO8acalaevmyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "metis", @@ -260756,32 +260712,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "TW_Polkadot_Proto_Balance", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "TW_Polkadot_Proto_CustomCallIndices", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "moduleIndex", + "printedName": "moduleIndex", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -260798,22 +260746,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -260830,22 +260770,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -260862,8 +260794,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32VvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -260872,23 +260804,27 @@ }, { "kind": "Var", - "name": "transfer", - "printedName": "transfer", + "name": "methodIndex", + "printedName": "methodIndex", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -260897,96 +260833,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "moduleName": "WalletCore", "accessorKind": "get" }, { @@ -261001,15 +260857,16 @@ }, { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -261024,8 +260881,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32VvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -261045,8 +260902,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -261068,8 +260925,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -261092,8 +260949,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -261110,8 +260967,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -261119,548 +260976,558 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "transfer", - "printedName": "transfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesVACycfc", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Enum", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ + "Mutating", "AccessControl" ], - "conformances": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "Transfer", - "printedName": "Transfer", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "TW_Polkadot_Proto_CallIndices", + "children": [ + { + "kind": "Var", + "name": "variant", + "printedName": "variant", + "children": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvM", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "accessorKind": "get" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "set" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0VvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0VvM", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -261669,54 +261536,92 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "implicit": true, + "accessorKind": "set" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Variant", + "printedName": "OneOf_Variant", + "children": [ + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant.Type) -> (WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" + } + ] + } + ] + } ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO6customyAeA0c1_d1_e7_CustomfG0VcAEmF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO6customyAeA0c1_d1_e7_CustomfG0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Function", @@ -261731,649 +261636,58 @@ }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", - "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", + "declKind": "Enum", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchTransfer", - "printedName": "BatchTransfer", - "children": [ - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesVACycfc", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262393,8 +261707,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262419,8 +261733,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -262442,8 +261756,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262468,8 +261782,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -262496,8 +261810,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -262527,8 +261841,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -262552,20 +261866,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262587,8 +261901,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -262606,8 +261920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -262617,8 +261931,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -262671,8 +261985,8 @@ }, { "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "TW_Polkadot_Proto_Staking", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "TW_Polkadot_Proto_Balance", "children": [ { "kind": "Var", @@ -262682,21 +261996,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -262714,21 +262028,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -262746,21 +262060,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -262777,8 +262091,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262787,19 +262101,19 @@ }, { "kind": "Var", - "name": "bond", - "printedName": "bond", + "name": "transfer", + "printedName": "transfer", "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262812,14 +262126,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262835,14 +262149,14 @@ }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -262858,8 +262172,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262868,19 +262182,19 @@ }, { "kind": "Var", - "name": "bondAndNominate", - "printedName": "bondAndNominate", + "name": "batchTransfer", + "printedName": "batchTransfer", "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262893,14 +262207,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262916,14 +262230,14 @@ }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -262939,8 +262253,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262949,19 +262263,19 @@ }, { "kind": "Var", - "name": "bondExtra", - "printedName": "bondExtra", + "name": "assetTransfer", + "printedName": "assetTransfer", "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262974,14 +262288,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262997,14 +262311,14 @@ }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -263020,8 +262334,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263030,19 +262344,19 @@ }, { "kind": "Var", - "name": "unbond", - "printedName": "unbond", + "name": "batchAssetTransfer", + "printedName": "batchAssetTransfer", "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -263055,14 +262369,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -263078,14 +262392,14 @@ }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -263101,8 +262415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263111,23 +262425,26 @@ }, { "kind": "Var", - "name": "withdrawUnbonded", - "printedName": "withdrawUnbonded", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -263136,15 +262453,16 @@ "children": [ { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -263159,15 +262477,16 @@ }, { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -263182,8 +262501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263191,859 +262510,199 @@ ] }, { - "kind": "Var", - "name": "nominate", - "printedName": "nominate", + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", "children": [ { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "transfer", + "printedName": "transfer", "children": [ { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "batchTransfer", + "printedName": "batchTransfer", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chill", - "printedName": "chill", - "children": [ - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "assetTransfer", + "printedName": "assetTransfer", "children": [ { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chillAndUnbond", - "printedName": "chillAndUnbond", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "rebond", - "printedName": "rebond", - "children": [ - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "bond", - "printedName": "bond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bondAndNominate", - "printedName": "bondAndNominate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bondExtra", - "printedName": "bondExtra", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "unbond", - "printedName": "unbond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawUnbonded", - "printedName": "withdrawUnbonded", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nominate", - "printedName": "nominate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "chill", - "printedName": "chill", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "chillAndUnbond", - "printedName": "chillAndUnbond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "rebond", - "printedName": "rebond", + "kind": "Var", + "name": "batchAssetTransfer", + "printedName": "batchAssetTransfer", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" }, { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ] } @@ -264051,8 +262710,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", "moduleName": "WalletCore" }, { @@ -264069,19 +262728,19 @@ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" }, { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264089,12 +262748,11 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -264108,13 +262766,13 @@ }, { "kind": "TypeDecl", - "name": "Bond", - "printedName": "Bond", + "name": "Transfer", + "printedName": "Transfer", "children": [ { "kind": "Var", - "name": "controller", - "printedName": "controller", + "name": "toAddress", + "printedName": "toAddress", "children": [ { "kind": "TypeNominal", @@ -264124,8 +262782,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264148,8 +262806,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264172,8 +262830,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264190,8 +262848,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264211,8 +262869,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264235,8 +262893,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264259,8 +262917,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264277,8 +262935,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264287,19 +262945,19 @@ }, { "kind": "Var", - "name": "rewardDestination", - "printedName": "rewardDestination", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264316,14 +262974,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264340,14 +262998,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264364,14 +263022,159 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", "name": "unknownFields", @@ -264385,8 +263188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264408,8 +263211,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264432,8 +263235,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264450,8 +263253,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264465,14 +263268,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -264492,8 +263295,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264518,8 +263321,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264541,8 +263344,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264567,8 +263370,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264595,8 +263398,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -264626,8 +263429,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -264651,20 +263454,20 @@ }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264686,8 +263489,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -264705,8 +263508,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -264716,8 +263519,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -264770,32 +263573,29 @@ }, { "kind": "TypeDecl", - "name": "BondAndNominate", - "printedName": "BondAndNominate", + "name": "BatchTransfer", + "printedName": "BatchTransfer", "children": [ { "kind": "Var", - "name": "controller", - "printedName": "controller", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -264804,16 +263604,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -264828,16 +263627,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -264852,8 +263650,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264862,27 +263660,24 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -264891,178 +263686,69 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "rewardDestination", - "printedName": "rewardDestination", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16clearCallIndicesyyF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "funcSelfKind": "Mutating" }, { "kind": "Var", - "name": "nominators", - "printedName": "nominators", + "name": "transfers", + "printedName": "transfers", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -265074,21 +263760,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265106,21 +263792,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265137,8 +263823,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265158,8 +263844,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265181,8 +263867,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265205,8 +263891,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265223,8 +263909,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265238,14 +263924,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -265265,8 +263951,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265291,8 +263977,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265314,8 +264000,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265340,8 +264026,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265368,8 +264054,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -265399,8 +264085,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -265424,20 +264110,20 @@ }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265459,8 +264145,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265478,8 +264164,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265489,8 +264175,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -265543,9 +264229,241 @@ }, { "kind": "TypeDecl", - "name": "BondExtra", - "printedName": "BondExtra", + "name": "AssetTransfer", + "printedName": "AssetTransfer", "children": [ + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "toAddress", + "printedName": "toAddress", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", "name": "value", @@ -265559,8 +264477,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265583,8 +264501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265607,8 +264525,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265625,8 +264543,182 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "assetID", + "printedName": "assetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "feeAssetID", + "printedName": "feeAssetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265646,8 +264738,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265669,8 +264761,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265693,8 +264785,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265711,8 +264803,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265726,14 +264818,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -265753,8 +264845,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265779,8 +264871,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265802,8 +264894,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265828,8 +264920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265856,8 +264948,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -265887,8 +264979,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -265912,20 +265004,20 @@ }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265947,8 +265039,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265966,8 +265058,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265977,8 +265069,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -266031,24 +265123,169 @@ }, { "kind": "TypeDecl", - "name": "Unbond", - "printedName": "Unbond", + "name": "BatchAssetTransfer", + "printedName": "BatchAssetTransfer", "children": [ { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "feeAssetID", + "printedName": "feeAssetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -266065,14 +265302,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -266089,14 +265326,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -266113,8 +265350,118 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "transfers", + "printedName": "transfers", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -266134,8 +265481,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -266157,8 +265504,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -266181,8 +265528,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -266199,8 +265546,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -266214,14 +265561,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -266241,8 +265588,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266267,8 +265614,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -266290,8 +265637,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266316,8 +265663,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -266344,8 +265691,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -266375,8 +265722,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -266400,20 +265747,20 @@ }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266435,8 +265782,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -266454,8 +265801,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -266465,8 +265812,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -266518,306 +265865,554 @@ ] }, { - "kind": "TypeDecl", - "name": "Rebond", - "printedName": "Rebond", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "TW_Polkadot_Proto_Staking", + "children": [ + { + "kind": "Var", + "name": "messageOneof", + "printedName": "messageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bond", + "printedName": "bond", + "children": [ { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bondAndNominate", + "printedName": "bondAndNominate", + "children": [ + { + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -266826,205 +266421,1216 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessorKind": "set" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bondExtra", + "printedName": "bondExtra", + "children": [ + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "accessorKind": "get" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unbond", + "printedName": "unbond", + "children": [ + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "withdrawUnbonded", + "printedName": "withdrawUnbonded", + "children": [ { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "TypeDecl", - "name": "WithdrawUnbonded", - "printedName": "WithdrawUnbonded", + "kind": "Var", + "name": "nominate", + "printedName": "nominate", "children": [ { - "kind": "Var", - "name": "slashingSpans", - "printedName": "slashingSpans", + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chill", + "printedName": "chill", + "children": [ + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chillAndUnbond", + "printedName": "chillAndUnbond", + "children": [ + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rebond", + "printedName": "rebond", + "children": [ + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "bond", + "printedName": "bond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "bondAndNominate", + "printedName": "bondAndNominate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "bondExtra", + "printedName": "bondExtra", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "unbond", + "printedName": "unbond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "withdrawUnbonded", + "printedName": "withdrawUnbonded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "nominate", + "printedName": "nominate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "chill", + "printedName": "chill", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "chillAndUnbond", + "printedName": "chillAndUnbond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "rebond", + "printedName": "rebond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bond", + "printedName": "Bond", + "children": [ + { + "kind": "Var", + "name": "controller", + "printedName": "controller", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -267041,14 +267647,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267065,14 +267671,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267089,8 +267695,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -267099,24 +267705,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -267127,14 +267734,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267151,14 +267758,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267175,59 +267782,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rewardDestination", + "printedName": "rewardDestination", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -267237,298 +267821,82 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Nominate", - "printedName": "Nominate", - "children": [ { "kind": "Var", - "name": "nominators", - "printedName": "nominators", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -267537,24 +267905,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -267569,24 +267928,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -267601,14 +267951,77 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", "name": "unknownFields", @@ -267622,8 +268035,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -267645,8 +268058,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267669,8 +268082,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267687,8 +268100,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -267702,14 +268115,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -267729,8 +268142,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267755,8 +268168,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -267778,8 +268191,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267804,8 +268217,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -267832,8 +268245,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -267863,8 +268276,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -267888,20 +268301,20 @@ }, { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" }, { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267923,8 +268336,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -267942,8 +268355,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -267953,8 +268366,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -268007,24 +268420,24 @@ }, { "kind": "TypeDecl", - "name": "ChillAndUnbond", - "printedName": "ChillAndUnbond", + "name": "BondAndNominate", + "printedName": "BondAndNominate", "children": [ { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "controller", + "printedName": "controller", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -268041,14 +268454,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268065,14 +268478,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268089,8 +268502,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -268099,24 +268512,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -268127,14 +268541,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268151,14 +268565,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268175,59 +268589,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rewardDestination", + "printedName": "rewardDestination", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -268237,46 +268628,92 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "nominators", + "printedName": "nominators", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -268286,136 +268723,180 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -268424,80 +268905,41 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Chill", - "printedName": "Chill", - "children": [ { "kind": "Var", "name": "unknownFields", @@ -268511,14 +268953,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -268535,8 +268976,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268559,8 +269000,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268577,8 +269018,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -268592,14 +269033,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -268619,8 +269060,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268645,8 +269086,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -268668,8 +269109,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268694,8 +269135,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -268722,8 +269163,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -268753,8 +269194,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -268778,20 +269219,20 @@ }, { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" }, { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268813,8 +269254,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -268832,8 +269273,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -268843,8 +269284,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -268896,391 +269337,224 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "TypeDecl", + "name": "BondExtra", + "printedName": "BondExtra", "children": [ { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingVACycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + ] }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "TW_Polkadot_Proto_SigningInput", - "children": [ - { - "kind": "Var", - "name": "blockHash", - "printedName": "blockHash", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", @@ -269288,149 +269562,226 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "genesisHash", - "printedName": "genesisHash", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "nonce", - "printedName": "nonce", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -269439,240 +269790,194 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "specVersion", - "printedName": "specVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + }, + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transactionVersion", - "printedName": "transactionVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { - "kind": "Var", - "name": "tip", - "printedName": "tip", + "kind": "TypeDecl", + "name": "Unbond", + "printedName": "Unbond", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", @@ -269681,164 +269986,167 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "era", - "printedName": "era", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasEra", - "printedName": "hasEra", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", @@ -269847,363 +270155,297 @@ "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearEra", - "printedName": "clearEra()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -270212,722 +270454,600 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "stakingCall", - "printedName": "stakingCall", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "name": "Rebond", + "printedName": "Rebond", "children": [ { "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "name": "value", + "printedName": "value", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" - } - ] + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "stakingCall", - "printedName": "stakingCall", + "name": "callIndices", + "printedName": "callIndices", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ] + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", - "moduleName": "WalletCore" + ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" - }, + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16clearCallIndicesyyF", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "TW_Polkadot_Proto_SigningOutput", - "children": [ - { - "kind": "Var", - "name": "encoded", - "printedName": "encoded", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -270936,196 +271056,404 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WithdrawUnbonded", + "printedName": "WithdrawUnbonded", + "children": [ + { + "kind": "Var", + "name": "slashingSpans", + "printedName": "slashingSpans", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", @@ -271133,42 +271461,21 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", @@ -271177,108 +271484,105 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -271287,47 +271591,47 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", @@ -271336,136 +271640,143 @@ "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", @@ -271474,1264 +271785,1094 @@ "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PrivateKey", - "printedName": "PrivateKey", - "children": [ - { - "kind": "Function", - "name": "isValid", - "printedName": "isValid(data:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", - "mangledName": "$s10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "TypeDecl", + "name": "Nominate", + "printedName": "Nominate", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "nominators", + "printedName": "nominators", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyCACycfc", - "mangledName": "$s10WalletCore10PrivateKeyCACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", - "mangledName": "$s10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyC3keyACSgAC_tcfc", - "mangledName": "$s10WalletCore10PrivateKeyC3keyACSgAC_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getPublicKey", - "printedName": "getPublicKey(coinType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyByType", - "printedName": "getPublicKeyByType(pubkeyType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeySecp256k1", - "printedName": "getPublicKeySecp256k1(compressed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyNist256p1", - "printedName": "getPublicKeyNist256p1()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519", - "printedName": "getPublicKeyEd25519()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519Blake2b", - "printedName": "getPublicKeyEd25519Blake2b()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519Cardano", - "printedName": "getPublicKeyEd25519Cardano()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyCurve25519", - "printedName": "getPublicKeyCurve25519()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSharedKey", - "printedName": "getSharedKey(publicKey:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", - "mangledName": "$s10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sign", - "printedName": "sign(digest:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", - "mangledName": "$s10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "signAsDER", - "printedName": "signAsDER(digest:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "signZilliqaSchnorr", - "printedName": "signZilliqaSchnorr(message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" } ], - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore10PrivateKeyC", - "mangledName": "$s10WalletCore10PrivateKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "PrivateKeyType", - "printedName": "PrivateKeyType", - "children": [ - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PrivateKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore14PrivateKeyTypeO7defaultyA2CmF", - "mangledName": "$s10WalletCore14PrivateKeyTypeO7defaultyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "cardano", - "printedName": "cardano", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PrivateKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", - "mangledName": "$s10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKeyType?", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - } - ], - "usr": "s:Sa" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore14PrivateKeyTypeO", - "mangledName": "$s10WalletCore14PrivateKeyTypeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PublicKey", - "printedName": "PublicKey", - "children": [ - { - "kind": "Function", - "name": "isValid", - "printedName": "isValid(data:type:)", - "children": [ + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", - "mangledName": "$s10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "recover", - "printedName": "recover(signature:message:)", + "kind": "TypeDecl", + "name": "ChillAndUnbond", + "printedName": "ChillAndUnbond", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKey?", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", - "mangledName": "$s10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isCompressed", - "printedName": "isCompressed", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvp", - "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvg", - "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "compressed", - "printedName": "compressed", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC10compressedACvp", - "mangledName": "$s10WalletCore9PublicKeyC10compressedACvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC10compressedACvg", - "mangledName": "$s10WalletCore9PublicKeyC10compressedACvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "uncompressed", - "printedName": "uncompressed", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC12uncompressedACvp", - "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Void", + "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC12uncompressedACvg", - "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16clearCallIndicesyyF", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "Mutating", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "keyType", - "printedName": "keyType", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", - "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", - "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC11descriptionSSvp", - "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -272740,609 +272881,875 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC11descriptionSSvg", - "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:type:)", - "children": [ + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKey?", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", - "mangledName": "$s10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "verify", - "printedName": "verify(signature:message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", "moduleName": "WalletCore", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyAsDER", - "printedName": "verifyAsDER(signature:message:)", - "children": [ + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyZilliqaSchnorr", - "printedName": "verifyZilliqaSchnorr(signature:message:)", - "children": [ + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Var", - "name": "bitcoinKeyHash", - "printedName": "bitcoinKeyHash", + "kind": "TypeDecl", + "name": "Chill", + "printedName": "Chill", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", - "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", - "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:10WalletCore9PublicKeyC", - "mangledName": "$s10WalletCore9PublicKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "PublicKeyType", - "printedName": "PublicKeyType", - "children": [ - { - "kind": "Var", - "name": "secp256k1", - "printedName": "secp256k1", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "secp256k1Extended", - "printedName": "secp256k1Extended", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nist256p1", - "printedName": "nist256p1", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nist256p1Extended", - "printedName": "nist256p1Extended", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519", - "printedName": "ed25519", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO7ed25519yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO7ed25519yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519Blake2b", - "printedName": "ed25519Blake2b", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "curve25519", - "printedName": "curve25519", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO10curve25519yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO10curve25519yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519Cardano", - "printedName": "ed25519Cardano", - "children": [ + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "starkex", - "printedName": "starkex", - "children": [ + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO7starkexyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO7starkexyA2CmF", - "moduleName": "WalletCore" + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKeyType?", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingVACycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -273351,46 +273758,185 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", + "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -273399,46 +273945,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore13PublicKeyTypeO", - "mangledName": "$s10WalletCore13PublicKeyTypeO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -273449,456 +274007,41 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "Purpose", - "printedName": "Purpose", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "TW_Polkadot_Proto_Identity", "children": [ { "kind": "Var", - "name": "bip44", - "printedName": "bip44", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip44yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip44yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip49", - "printedName": "bip49", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip49yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip49yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip84", - "printedName": "bip84", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip84yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip84yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip1852", - "printedName": "bip1852", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO7bip1852yA2CmF", - "mangledName": "$s10WalletCore7PurposeO7bip1852yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.Purpose?", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore7PurposeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvpZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore7PurposeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore7PurposeO", - "mangledName": "$s10WalletCore7PurposeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "TW_Ripple_Proto_CurrencyAmount", - "children": [ - { - "kind": "Var", - "name": "currency", - "printedName": "currency", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -273915,14 +274058,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -273939,14 +274090,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -273963,8 +274122,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -273973,27 +274132,23 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "joinIdentityAsKey", + "printedName": "joinIdentityAsKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -274002,16 +274157,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -274026,16 +274180,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -274050,8 +274203,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274060,27 +274213,23 @@ }, { "kind": "Var", - "name": "issuer", - "printedName": "issuer", + "name": "addAuthorization", + "printedName": "addAuthorization", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -274089,16 +274238,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -274113,16 +274261,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -274137,8 +274284,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274158,8 +274305,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -274181,8 +274328,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -274205,8 +274352,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -274223,8 +274370,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274232,492 +274379,401 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "joinIdentityAsKey", + "printedName": "joinIdentityAsKey", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "kind": "Var", + "name": "addAuthorization", + "printedName": "addAuthorization", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO16addAuthorizationyAeC03AddL0VcAEmF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO16addAuthorizationyAeC03AddL0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Enum", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeDecl", + "name": "JoinIdentityAsKey", + "printedName": "JoinIdentityAsKey", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "TW_Ripple_Proto_OperationTrustSet", - "children": [ - { - "kind": "Var", - "name": "limitAmount", - "printedName": "limitAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "accessorKind": "get" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16clearCallIndicesyyF", "moduleName": "WalletCore", - "accessorKind": "set" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "authID", + "printedName": "authID", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasLimitAmount", - "printedName": "hasLimitAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearLimitAmount", - "printedName": "clearLimitAmount()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", @@ -274726,108 +274782,105 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyVAEycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -274836,47 +274889,47 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", @@ -274885,276 +274938,47 @@ "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "TW_Ripple_Proto_OperationPayment", - "children": [ - { - "kind": "Var", - "name": "amountOneof", - "printedName": "amountOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -275163,261 +274987,340 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" + }, + { + "kind": "TypeNominal", + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currencyAmount", - "printedName": "currencyAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AddAuthorization", + "printedName": "AddAuthorization", + "children": [ + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "destination", - "printedName": "destination", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "target", + "printedName": "target", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "String", @@ -275425,104 +275328,208 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "destinationTag", - "printedName": "destinationTag", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "hasData", + "printedName": "hasData", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearData", + "printedName": "clearData()", "children": [ { "kind": "TypeNominal", @@ -275530,67 +275537,109 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9clearDatayyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9clearDatayyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "expiry", + "printedName": "expiry", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UnknownStorage", @@ -275598,182 +275647,1705 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_AmountOneof", - "printedName": "OneOf_AmountOneof", - "children": [ + ] + }, { - "kind": "Var", - "name": "amount", - "printedName": "amount", + "kind": "TypeDecl", + "name": "DataMessage", + "printedName": "DataMessage", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "currencyAmount", - "printedName": "currencyAmount", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageVAGycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageVAGycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV2eeoiySbAG_AGtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV2eeoiySbAG_AGtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { - "kind": "Conformance", + "kind": "TypeDecl", + "name": "AuthData", + "printedName": "AuthData", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAsset", + "printedName": "hasAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV10clearAssetyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "extrinsic", + "printedName": "extrinsic", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasExtrinsic", + "printedName": "hasExtrinsic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearExtrinsic", + "printedName": "clearExtrinsic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearExtrinsicyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearExtrinsicyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "portfolio", + "printedName": "portfolio", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPortfolio", + "printedName": "hasPortfolio", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPortfolio", + "printedName": "clearPortfolio()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearPortfolioyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearPortfolioyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataVAGycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataVAGycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV2eeoiySbAG_AGtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV2eeoiySbAG_AGtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationVAEycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", "name": "Equatable", "printedName": "Equatable", "usr": "s:SQ", @@ -275788,14 +277360,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityVACycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -275815,8 +277387,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -275841,8 +277413,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -275864,8 +277436,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -275890,8 +277462,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -275918,8 +277490,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -275949,8 +277521,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -275974,20 +277546,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276009,8 +277581,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276028,8 +277600,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276039,8 +277611,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -276093,24 +277665,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "TW_Ripple_Proto_OperationNFTokenBurn", + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "TW_Polkadot_Proto_PolymeshCall", "children": [ { "kind": "Var", - "name": "nftokenID", - "printedName": "nftokenID", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -276127,14 +277707,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -276151,14 +277739,22 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -276175,8 +277771,89 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "identityCall", + "printedName": "identityCall", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276196,8 +277873,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -276219,8 +277896,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -276243,8 +277920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -276261,14 +277938,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "identityCall", + "printedName": "identityCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity) -> WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity) -> WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -276276,14 +278058,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallVACycfc", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -276303,8 +278085,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276329,8 +278111,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -276352,8 +278134,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276378,8 +278160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -276406,8 +278188,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -276437,8 +278219,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -276462,20 +278244,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276497,8 +278279,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276516,8 +278298,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276527,8 +278309,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -276581,13 +278363,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "TW_Polkadot_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "nftokenID", - "printedName": "nftokenID", + "name": "blockHash", + "printedName": "blockHash", "children": [ { "kind": "TypeNominal", @@ -276597,16 +278379,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276621,10 +278400,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276645,10 +278423,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276663,8 +278440,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276673,27 +278450,24 @@ }, { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "genesisHash", + "printedName": "genesisHash", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276702,16 +278476,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276726,16 +278499,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276750,8 +278522,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276760,26 +278532,24 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "nonce", + "printedName": "nonce", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276788,16 +278558,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276812,16 +278581,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276836,8 +278604,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276845,51 +278613,107 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "specVersion", + "printedName": "specVersion", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "transactionVersion", + "printedName": "transactionVersion", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276898,47 +278722,80 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "tip", + "printedName": "tip", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276947,136 +278804,162 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "era", + "printedName": "era", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "hasEra", + "printedName": "hasEra", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -277085,84 +278968,45 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearEra", + "printedName": "clearEra()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "children": [ { "kind": "Var", - "name": "sellOffer", - "printedName": "sellOffer", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", @@ -277172,16 +279016,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277196,10 +279037,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277220,10 +279060,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277238,8 +279077,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -277248,26 +279087,24 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "network", + "printedName": "network", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277276,16 +279113,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277300,16 +279136,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277324,60 +279159,34 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "multiAddress", + "printedName": "multiAddress", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277386,47 +279195,88 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277435,136 +279285,176 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "balanceCall", + "printedName": "balanceCall", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" } ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "stakingCall", + "printedName": "stakingCall", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -277573,111 +279463,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "children": [ { "kind": "Var", - "name": "tokenOffers", - "printedName": "tokenOffers", + "name": "polymeshCall", + "printedName": "polymeshCall", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277686,24 +279544,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277718,24 +279567,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277750,8 +279590,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -277771,8 +279611,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -277794,8 +279634,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -277818,8 +279658,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -277836,14 +279676,220 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "balanceCall", + "printedName": "balanceCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "stakingCall", + "printedName": "stakingCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "polymeshCall", + "printedName": "polymeshCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_PolymeshCall) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_PolymeshCall) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO12polymeshCallyAeA0c1_d1_e9_PolymeshM0VcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO12polymeshCallyAeA0c1_d1_e9_PolymeshM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -277851,14 +279897,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -277878,8 +279924,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -277904,8 +279950,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -277927,8 +279973,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -277953,8 +279999,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -277981,8 +280027,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -278012,8 +280058,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -278037,20 +280083,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -278072,8 +280118,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -278091,8 +280137,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -278102,8 +280148,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -278156,24 +280202,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "TW_Ripple_Proto_SigningInput", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "TW_Polkadot_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "fee", - "printedName": "fee", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278190,14 +280236,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278214,14 +280260,14 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278238,8 +280284,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278248,19 +280294,19 @@ }, { "kind": "Var", - "name": "sequence", - "printedName": "sequence", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278277,14 +280323,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278301,14 +280347,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278325,8 +280371,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278335,19 +280381,19 @@ }, { "kind": "Var", - "name": "lastLedgerSequence", - "printedName": "lastLedgerSequence", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278364,14 +280410,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278388,14 +280434,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278412,8 +280458,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278422,25 +280468,24 @@ }, { "kind": "Var", - "name": "account", - "printedName": "account", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -278451,14 +280496,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278475,14 +280520,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278499,36 +280544,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "flags", - "printedName": "flags", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -278538,84 +280606,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -278625,191 +280655,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "operationOneof", - "printedName": "operationOneof", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "opTrustSet", - "printedName": "opTrustSet", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -278818,78 +280793,146 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PrivateKey", + "printedName": "PrivateKey", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(data:curve:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "mangledName": "$s10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -278899,412 +280942,410 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "opNftokenBurn", - "printedName": "opNftokenBurn", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyCACycfc", + "mangledName": "$s10WalletCore10PrivateKeyCACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", + "mangledName": "$s10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyC3keyACSgAC_tcfc", + "mangledName": "$s10WalletCore10PrivateKeyC3keyACSgAC_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "opNftokenCreateOffer", - "printedName": "opNftokenCreateOffer", + "kind": "Function", + "name": "getPublicKey", + "printedName": "getPublicKey(coinType:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyByType", + "printedName": "getPublicKeyByType(pubkeyType:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeySecp256k1", + "printedName": "getPublicKeySecp256k1(compressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "opNftokenAcceptOffer", - "printedName": "opNftokenAcceptOffer", + "kind": "Function", + "name": "getPublicKeyNist256p1", + "printedName": "getPublicKeyNist256p1()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519", + "printedName": "getPublicKeyEd25519()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519Blake2b", + "printedName": "getPublicKeyEd25519Blake2b()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519Cardano", + "printedName": "getPublicKeyEd25519Cardano()", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "opNftokenCancelOffer", - "printedName": "opNftokenCancelOffer", + "kind": "Function", + "name": "getPublicKeyCurve25519", + "printedName": "getPublicKeyCurve25519()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSharedKey", + "printedName": "getSharedKey(publicKey:curve:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", + "mangledName": "$s10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sign", + "printedName": "sign(digest:curve:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "publicKey", - "printedName": "publicKey", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", + "mangledName": "$s10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signAsDER", + "printedName": "signAsDER(digest:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", @@ -279313,23 +281354,36 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signZilliqaSchnorr", + "printedName": "signZilliqaSchnorr(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Data", @@ -279337,520 +281391,167 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore10PrivateKeyC", + "mangledName": "$s10WalletCore10PrivateKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "PrivateKeyType", + "printedName": "PrivateKeyType", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_OperationOneof", - "printedName": "OneOf_OperationOneof", - "children": [ - { - "kind": "Var", - "name": "opTrustSet", - "printedName": "opTrustSet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenBurn", - "printedName": "opNftokenBurn", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenCreateOffer", - "printedName": "opNftokenCreateOffer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "name": "Metatype", + "printedName": "WalletCore.PrivateKeyType.Type", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore14PrivateKeyTypeO7defaultyA2CmF", + "mangledName": "$s10WalletCore14PrivateKeyTypeO7defaultyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "cardano", + "printedName": "cardano", + "children": [ { - "kind": "Var", - "name": "opNftokenAcceptOffer", - "printedName": "opNftokenAcceptOffer", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenCancelOffer", - "printedName": "opNftokenCancelOffer", - "children": [ + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PrivateKeyType.Type", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "declKind": "EnumElement", + "usr": "s:10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", + "mangledName": "$s10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Optional", + "printedName": "WalletCore.PrivateKeyType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -279859,47 +281560,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -279908,136 +281608,224 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore14PrivateKeyTypeO", + "mangledName": "$s10WalletCore14PrivateKeyTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "usr": "s:SY", + "mangledName": "$sSY" }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PublicKey", + "printedName": "PublicKey", + "children": [ { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "isValid", + "printedName": "isValid(data:type:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", + "mangledName": "$s10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "recover", + "printedName": "recover(signature:message:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "WalletCore.PublicKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", + "mangledName": "$s10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "isCompressed", + "printedName": "isCompressed", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvp", + "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -280046,103 +281834,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvg", + "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "TW_Ripple_Proto_SigningOutput", - "children": [ { "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "name": "compressed", + "printedName": "compressed", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "usr": "s:10WalletCore9PublicKeyC10compressedACvp", + "mangledName": "$s10WalletCore9PublicKeyC10compressedACvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280151,85 +281879,88 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "usr": "s:10WalletCore9PublicKeyC10compressedACvg", + "mangledName": "$s10WalletCore9PublicKeyC10compressedACvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "uncompressed", + "printedName": "uncompressed", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore9PublicKeyC12uncompressedACvp", + "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvp", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "usr": "s:10WalletCore9PublicKeyC12uncompressedACvg", + "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280238,85 +281969,43 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "keyType", + "printedName": "keyType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", + "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280325,173 +282014,26 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", + "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -280501,18 +282043,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore9PublicKeyC11descriptionSSvp", + "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280527,130 +282065,61 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore9PublicKeyC11descriptionSSvg", + "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:type:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "WalletCore.PublicKey?", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Constructor", + "usr": "s:10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", + "mangledName": "$s10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "verify", + "printedName": "verify(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280660,142 +282129,32 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "RippleXAddress", - "printedName": "RippleXAddress", - "children": [ { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "verifyAsDER", + "printedName": "verifyAsDER(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280805,22 +282164,21 @@ }, { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "Final", "AccessControl", @@ -280830,8 +282188,8 @@ }, { "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:)", + "name": "verifyZilliqaSchnorr", + "printedName": "verifyZilliqaSchnorr(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280841,16 +282199,21 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", - "mangledName": "$s10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "usr": "s:10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "Final", "AccessControl", @@ -280860,25 +282223,25 @@ }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "bitcoinKeyHash", + "printedName": "bitcoinKeyHash", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvp", + "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", + "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -280887,194 +282250,325 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvg", + "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", + "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", "moduleName": "WalletCore", "declAttributes": [ "Final" ], + "isFromExtension": true, "accessorKind": "get" } ] - }, + } + ], + "declKind": "Class", + "usr": "s:10WalletCore9PublicKeyC", + "mangledName": "$s10WalletCore9PublicKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "PublicKeyType", + "printedName": "PublicKeyType", + "children": [ { "kind": "Var", - "name": "tag", - "printedName": "tag", + "name": "secp256k1", + "printedName": "secp256k1", "children": [ { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvp", - "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "secp256k1Extended", + "printedName": "secp256k1Extended", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvg", - "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", + "kind": "Var", + "name": "nist256p1", + "printedName": "nist256p1", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.RippleXAddress?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore14RippleXAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore14RippleXAddressC6stringACSgSS_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(publicKey:tag:)", + "kind": "Var", + "name": "nist256p1Extended", + "printedName": "nist256p1Extended", "children": [ { - "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", - "mangledName": "$s10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "ed25519", + "printedName": "ed25519", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore14RippleXAddressC", - "mangledName": "$s10WalletCore14RippleXAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO7ed25519yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO7ed25519yA2CmF", + "moduleName": "WalletCore" + }, { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + "kind": "Var", + "name": "ed25519Blake2b", + "printedName": "ed25519Blake2b", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SS58AddressType", - "printedName": "SS58AddressType", - "children": [ + "kind": "Var", + "name": "curve25519", + "printedName": "curve25519", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO10curve25519yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO10curve25519yA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", - "name": "polkadot", - "printedName": "polkadot", + "name": "ed25519Cardano", + "printedName": "ed25519Cardano", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.SS58AddressType.Type", + "printedName": "WalletCore.PublicKeyType.Type", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ] } @@ -281082,36 +282576,36 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore15SS58AddressTypeO8polkadotyA2CmF", - "mangledName": "$s10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "usr": "s:10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", "moduleName": "WalletCore" }, { "kind": "Var", - "name": "kusama", - "printedName": "kusama", + "name": "starkex", + "printedName": "starkex", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.SS58AddressType.Type", + "printedName": "WalletCore.PublicKeyType.Type", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ] } @@ -281119,8 +282613,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore15SS58AddressTypeO6kusamayA2CmF", - "mangledName": "$s10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "usr": "s:10WalletCore13PublicKeyTypeO7starkexyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO7starkexyA2CmF", "moduleName": "WalletCore" }, { @@ -281131,27 +282625,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.SS58AddressType?", + "printedName": "WalletCore.PublicKeyType?", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", "implicit": true, "init_kind": "Designated" @@ -281163,14 +282657,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", "implicit": true, "accessors": [ @@ -281181,14 +282675,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281203,21 +282697,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", + "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -281230,21 +282724,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -281254,14 +282748,14 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore15SS58AddressTypeO", - "mangledName": "$s10WalletCore15SS58AddressTypeO", + "usr": "s:10WalletCore13PublicKeyTypeO", + "mangledName": "$s10WalletCore13PublicKeyTypeO", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", @@ -281289,9 +282783,9 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ] } @@ -281312,13 +282806,13 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" @@ -281331,198 +282825,209 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SegwitAddress", - "printedName": "SegwitAddress", + "name": "Purpose", + "printedName": "Purpose", "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "bip44", + "printedName": "bip44", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" - }, - { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip44yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip44yA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:)", + "kind": "Var", + "name": "bip49", + "printedName": "bip49", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", - "mangledName": "$s10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip49yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip49yA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "bip84", + "printedName": "bip84", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip84yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip84yA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "hrp", - "printedName": "hrp", + "name": "bip1852", + "printedName": "bip1852", "children": [ { - "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvp", - "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO7bip1852yA2CmF", + "mangledName": "$s10WalletCore7PurposeO7bip1852yA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Purpose?", "children": [ { "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvg", - "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "witnessVersion", - "printedName": "witnessVersion", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", + "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -281531,43 +283036,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", + "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "witnessProgram", - "printedName": "witnessProgram", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", + "usr": "s:10WalletCore7PurposeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -281576,115 +283084,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", + "usr": "s:10WalletCore7PurposeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore7PurposeO", + "mangledName": "$s10WalletCore7PurposeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.SegwitAddress?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SegwitAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore13SegwitAddressC6stringACSgSS_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(hrp:publicKey:)", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" - }, - { - "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", - "mangledName": "$s10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore13SegwitAddressC", - "mangledName": "$s10WalletCore13SegwitAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } ] }, @@ -281707,13 +283205,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_Transfer", - "printedName": "TW_Solana_Proto_Transfer", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "TW_Ripple_Proto_CurrencyAmount", "children": [ { "kind": "Var", - "name": "recipient", - "printedName": "recipient", + "name": "currency", + "printedName": "currency", "children": [ { "kind": "TypeNominal", @@ -281723,8 +283221,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -281747,8 +283245,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281771,8 +283269,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -281789,8 +283287,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -281801,93 +283299,6 @@ "kind": "Var", "name": "value", "printedName": "value", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "memo", - "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -281897,8 +283308,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -281921,8 +283332,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281945,8 +283356,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -281963,8 +283374,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -281973,27 +283384,19 @@ }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "issuer", + "printedName": "issuer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282010,22 +283413,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282042,22 +283437,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282074,8 +283461,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282095,8 +283482,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282118,8 +283505,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282142,8 +283529,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282160,8 +283547,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282175,14 +283562,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferVACycfc", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferVACycfc", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -282202,8 +283589,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282228,8 +283615,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282251,8 +283638,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282277,8 +283664,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282305,8 +283692,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -282336,8 +283723,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -282361,20 +283748,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282396,8 +283783,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -282415,8 +283802,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -282426,8 +283813,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -282480,32 +283867,29 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "TW_Solana_Proto_DelegateStake", + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "TW_Ripple_Proto_OperationTrustSet", "children": [ { "kind": "Var", - "name": "validatorPubkey", - "printedName": "validatorPubkey", + "name": "limitAmount", + "printedName": "limitAmount", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -282514,16 +283898,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -282538,16 +283921,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -282562,8 +283944,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282572,27 +283954,24 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "hasLimitAmount", + "printedName": "hasLimitAmount", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -282601,148 +283980,40 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "kind": "Function", + "name": "clearLimitAmount", + "printedName": "clearLimitAmount()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", + "declKind": "Func", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "funcSelfKind": "Mutating" }, { "kind": "Var", @@ -282757,8 +284028,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282780,8 +284051,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282804,8 +284075,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282822,8 +284093,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282837,14 +284108,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -282864,8 +284135,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282890,8 +284161,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282913,8 +284184,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282939,8 +284210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282967,8 +284238,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -282998,8 +284269,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -283023,20 +284294,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283058,8 +284329,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283077,8 +284348,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283088,8 +284359,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -283142,13 +284413,286 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "TW_Solana_Proto_DeactivateStake", + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "TW_Ripple_Proto_OperationPayment", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "amountOneof", + "printedName": "amountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currencyAmount", + "printedName": "currencyAmount", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", @@ -283158,8 +284702,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283182,8 +284726,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283206,8 +284750,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283224,8 +284768,95 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destinationTag", + "printedName": "destinationTag", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283245,8 +284876,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283268,8 +284899,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283292,8 +284923,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283310,14 +284941,170 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_AmountOneof", + "printedName": "OneOf_AmountOneof", + "children": [ + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "currencyAmount", + "printedName": "currencyAmount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -283325,14 +285112,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -283352,8 +285139,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283378,8 +285165,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283401,8 +285188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283427,8 +285214,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283455,8 +285242,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -283486,8 +285273,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -283511,20 +285298,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283546,8 +285333,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283565,8 +285352,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283576,8 +285363,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -283630,32 +285417,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "TW_Solana_Proto_DeactivateAllStake", + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "TW_Ripple_Proto_OperationNFTokenBurn", "children": [ { "kind": "Var", - "name": "stakeAccounts", - "printedName": "stakeAccounts", + "name": "nftokenID", + "printedName": "nftokenID", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283672,22 +285451,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283704,22 +285475,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283736,8 +285499,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283757,8 +285520,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283780,8 +285543,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283804,8 +285567,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283822,8 +285585,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283837,14 +285600,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -283864,8 +285627,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283890,8 +285653,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283913,8 +285676,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283939,8 +285702,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283967,8 +285730,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -283998,8 +285761,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -284023,20 +285786,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284058,8 +285821,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284077,8 +285840,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284088,8 +285851,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -284142,24 +285905,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "TW_Solana_Proto_WithdrawStake", + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenCreateOffer", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "nftokenID", + "printedName": "nftokenID", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284176,14 +285939,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284200,14 +285963,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284224,8 +285987,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284234,19 +285997,19 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284263,14 +286026,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284287,14 +286050,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284311,8 +286074,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284332,8 +286095,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284355,8 +286118,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284379,8 +286142,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284397,8 +286160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284412,14 +286175,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -284439,8 +286202,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284465,8 +286228,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -284488,8 +286251,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284514,8 +286277,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -284542,8 +286305,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -284573,8 +286336,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -284598,20 +286361,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284633,8 +286396,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284652,8 +286415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284663,8 +286426,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -284717,24 +286480,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "TW_Solana_Proto_StakeAccountValue", + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "sellOffer", + "printedName": "sellOffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284751,14 +286514,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284775,14 +286538,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284799,8 +286562,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284809,106 +286572,19 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284930,8 +286606,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284954,8 +286630,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284972,8 +286648,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284987,14 +286663,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -285014,8 +286690,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285040,8 +286716,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285063,8 +286739,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285089,8 +286765,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285117,8 +286793,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -285148,8 +286824,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -285173,20 +286849,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285208,8 +286884,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285227,8 +286903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285238,8 +286914,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -285292,32 +286968,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "TW_Solana_Proto_WithdrawAllStake", + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenCancelOffer", "children": [ { "kind": "Var", - "name": "stakeAccounts", - "printedName": "stakeAccounts", + "name": "tokenOffers", + "printedName": "tokenOffers", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285335,21 +287011,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285367,21 +287043,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285398,8 +287074,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285419,8 +287095,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285442,8 +287118,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285466,8 +287142,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285484,8 +287160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285499,14 +287175,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -285526,8 +287202,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285552,8 +287228,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285575,8 +287251,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285601,8 +287277,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285629,8 +287305,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -285660,8 +287336,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -285685,20 +287361,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285720,8 +287396,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285739,8 +287415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285750,8 +287426,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -285804,24 +287480,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "TW_Solana_Proto_CreateTokenAccount", + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "TW_Ripple_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "mainAddress", - "printedName": "mainAddress", + "name": "fee", + "printedName": "fee", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285838,14 +287514,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285862,14 +287538,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285886,8 +287562,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285896,19 +287572,19 @@ }, { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "sequence", + "printedName": "sequence", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285925,14 +287601,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285949,14 +287625,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285973,8 +287649,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285983,19 +287659,19 @@ }, { "kind": "Var", - "name": "tokenAddress", - "printedName": "tokenAddress", + "name": "lastLedgerSequence", + "printedName": "lastLedgerSequence", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -286012,14 +287688,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286036,14 +287712,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286060,8 +287736,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286070,24 +287746,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "account", + "printedName": "account", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -286098,14 +287775,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286122,14 +287799,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286146,59 +287823,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "flags", + "printedName": "flags", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -286208,282 +287862,77 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "TW_Solana_Proto_TokenTransfer", - "children": [ { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -286500,14 +287949,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286524,14 +287973,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286548,8 +287997,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286558,25 +288007,32 @@ }, { "kind": "Var", - "name": "senderTokenAddress", - "printedName": "senderTokenAddress", + "name": "operationOneof", + "printedName": "operationOneof", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -286587,14 +288043,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286611,14 +288075,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286635,8 +288107,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286645,27 +288117,23 @@ }, { "kind": "Var", - "name": "recipientTokenAddress", - "printedName": "recipientTokenAddress", + "name": "opTrustSet", + "printedName": "opTrustSet", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286674,16 +288142,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286698,16 +288165,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286722,8 +288188,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286732,27 +288198,23 @@ }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "opPayment", + "printedName": "opPayment", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286761,16 +288223,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286785,16 +288246,15 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286809,8 +288269,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286819,27 +288279,23 @@ }, { "kind": "Var", - "name": "decimals", - "printedName": "decimals", + "name": "opNftokenBurn", + "printedName": "opNftokenBurn", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286848,16 +288304,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286872,16 +288327,15 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286896,8 +288350,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286906,27 +288360,23 @@ }, { "kind": "Var", - "name": "memo", - "printedName": "memo", + "name": "opNftokenCreateOffer", + "printedName": "opNftokenCreateOffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286935,16 +288385,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286959,16 +288408,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286983,8 +288431,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286993,35 +288441,23 @@ }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "opNftokenAcceptOffer", + "printedName": "opNftokenAcceptOffer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -287030,24 +288466,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -287062,24 +288489,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -287094,8 +288512,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287104,26 +288522,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "opNftokenCancelOffer", + "printedName": "opNftokenCancelOffer", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -287132,16 +288547,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -287156,16 +288570,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -287180,59 +288593,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "publicKey", + "printedName": "publicKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -287242,46 +288632,83 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -287291,30 +288718,544 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_OperationOneof", + "printedName": "OneOf_OperationOneof", + "children": [ + { + "kind": "Var", + "name": "opTrustSet", + "printedName": "opTrustSet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenBurn", + "printedName": "opNftokenBurn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenCreateOffer", + "printedName": "opNftokenCreateOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenAcceptOffer", + "printedName": "opNftokenAcceptOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenCancelOffer", + "printedName": "opNftokenCancelOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", "printedName": "()" }, { @@ -287325,8 +289266,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -287356,8 +289297,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -287381,20 +289322,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -287416,8 +289357,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -287435,8 +289376,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -287446,8 +289387,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -287500,24 +289441,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "TW_Solana_Proto_CreateAndTransferToken", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "TW_Ripple_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "recipientMainAddress", - "printedName": "recipientMainAddress", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287534,14 +289475,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287558,14 +289499,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287582,8 +289523,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287592,19 +289533,19 @@ }, { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287621,14 +289562,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287645,14 +289586,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287669,8 +289610,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287679,8 +289620,8 @@ }, { "kind": "Var", - "name": "recipientTokenAddress", - "printedName": "recipientTokenAddress", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", @@ -287690,8 +289631,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287714,8 +289655,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287738,8 +289679,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287756,8 +289697,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287766,25 +289707,24 @@ }, { "kind": "Var", - "name": "senderTokenAddress", - "printedName": "senderTokenAddress", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -287795,14 +289735,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287819,14 +289759,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287843,36 +289783,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -287882,84 +289845,46 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "decimals", - "printedName": "decimals", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -287969,85 +289894,136 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "memo", - "printedName": "memo", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" } ], - "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -288056,93 +290032,177 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RippleXAddress", + "printedName": "RippleXAddress", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + }, + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isValidString", + "printedName": "isValidString(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "mangledName": "$s10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288151,100 +290211,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "tag", + "printedName": "tag", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvp", + "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288253,108 +290256,247 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvg", + "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.RippleXAddress?", + "children": [ + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + } + ], + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore14RippleXAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore14RippleXAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(publicKey:tag:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", + "mangledName": "$s10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore14RippleXAddressC", + "mangledName": "$s10WalletCore14RippleXAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SS58AddressType", + "printedName": "SS58AddressType", + "children": [ + { + "kind": "Var", + "name": "polkadot", + "printedName": "polkadot", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Metatype", + "printedName": "WalletCore.SS58AddressType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "mangledName": "$s10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "kusama", + "printedName": "kusama", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.SS58AddressType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "mangledName": "$s10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "moduleName": "WalletCore" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "Optional", + "printedName": "WalletCore.SS58AddressType?", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -288363,47 +290505,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -288412,87 +290553,163 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore15SS58AddressTypeO", + "mangledName": "$s10WalletCore15SS58AddressTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "usr": "s:SY", + "mangledName": "$sSY" }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SegwitAddress", + "printedName": "SegwitAddress", + "children": [ { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + }, + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" } ], "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "isValidString", + "printedName": "isValidString(string:)", "children": [ { "kind": "TypeNominal", @@ -288502,46 +290719,44 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", + "mangledName": "$s10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", + "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -288550,103 +290765,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", + "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "TW_Solana_Proto_CreateNonceAccount", - "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "hrp", + "printedName": "hrp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvp", + "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288655,84 +290810,43 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvg", + "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "rent", - "printedName": "rent", + "name": "witnessVersion", + "printedName": "witnessVersion", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", + "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288741,66 +290855,26 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "nonceAccountPrivateKey", - "printedName": "nonceAccountPrivateKey", + "name": "witnessProgram", + "printedName": "witnessProgram", "children": [ { "kind": "TypeNominal", @@ -288810,16 +290884,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", + "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288834,11 +290906,176 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.SegwitAddress?", + "children": [ + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SegwitAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore13SegwitAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hrp:publicKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + }, + { + "kind": "TypeNominal", + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", + "mangledName": "$s10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore13SegwitAddressC", + "mangledName": "$s10WalletCore13SegwitAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SwiftProtobuf", + "printedName": "SwiftProtobuf", + "declKind": "Import", + "moduleName": "WalletCore" + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_Transfer", + "printedName": "TW_Solana_Proto_Transfer", + "children": [ + { + "kind": "Var", + "name": "recipient", + "printedName": "recipient", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { "kind": "Accessor", @@ -288852,14 +291089,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -288876,8 +291113,293 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -288897,8 +291419,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -288920,8 +291442,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -288944,8 +291466,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -288962,8 +291484,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -288977,14 +291499,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferVACycfc", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -289004,8 +291526,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289030,8 +291552,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289053,8 +291575,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289079,8 +291601,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289107,8 +291629,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -289138,8 +291660,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -289163,20 +291685,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289198,8 +291720,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289217,8 +291739,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289228,11 +291750,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -289281,13 +291804,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "TW_Solana_Proto_WithdrawNonceAccount", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "TW_Solana_Proto_DelegateStake", "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "validatorPubkey", + "printedName": "validatorPubkey", "children": [ { "kind": "TypeNominal", @@ -289297,8 +291820,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289321,8 +291844,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289345,8 +291868,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289363,8 +291886,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289373,24 +291896,25 @@ }, { "kind": "Var", - "name": "recipient", - "printedName": "recipient", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -289401,14 +291925,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289425,14 +291949,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289449,8 +291973,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289459,24 +291983,25 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -289487,14 +292012,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289511,14 +292036,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289535,8 +292060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289556,8 +292081,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289579,8 +292104,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289603,8 +292128,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289621,8 +292146,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289636,14 +292161,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -289663,8 +292188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289689,8 +292214,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289712,8 +292237,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289738,8 +292263,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289766,8 +292291,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -289797,8 +292322,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -289822,20 +292347,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289857,8 +292382,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289876,8 +292401,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289887,11 +292412,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -289940,13 +292466,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "TW_Solana_Proto_AdvanceNonceAccount", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "TW_Solana_Proto_DeactivateStake", "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", @@ -289956,8 +292482,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289980,8 +292506,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290004,8 +292530,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290022,8 +292548,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290043,8 +292569,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290066,8 +292592,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290090,8 +292616,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290108,8 +292634,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290123,14 +292649,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -290150,8 +292676,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290176,8 +292702,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -290199,8 +292725,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290225,8 +292751,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -290253,8 +292779,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -290284,8 +292810,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -290309,20 +292835,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290344,8 +292870,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -290363,8 +292889,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -290374,11 +292900,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -290427,24 +292954,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "TW_Solana_Proto_SigningInput", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "TW_Solana_Proto_DeactivateAllStake", "children": [ { "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "name": "stakeAccounts", + "printedName": "stakeAccounts", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290461,14 +292996,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290485,14 +293028,22 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290509,8 +293060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290519,25 +293070,24 @@ }, { "kind": "Var", - "name": "recentBlockhash", - "printedName": "recentBlockhash", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -290548,14 +293098,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290572,14 +293122,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290596,35 +293146,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "v0Msg", - "printedName": "v0Msg", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -290634,85 +293208,282 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "transactionType", - "printedName": "transactionType", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "TW_Solana_Proto_WithdrawStake", + "children": [ + { + "kind": "Var", + "name": "stakeAccount", + "printedName": "stakeAccount", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290729,22 +293500,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290761,22 +293524,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290793,8 +293548,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290803,23 +293558,27 @@ }, { "kind": "Var", - "name": "transferTransaction", - "printedName": "transferTransaction", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290828,15 +293587,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -290851,15 +293611,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -290874,8 +293635,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290884,23 +293645,26 @@ }, { "kind": "Var", - "name": "delegateStakeTransaction", - "printedName": "delegateStakeTransaction", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290909,15 +293673,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -290932,15 +293697,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -290955,33 +293721,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "deactivateStakeTransaction", - "printedName": "deactivateStakeTransaction", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290990,79 +293783,47 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "deactivateAllStakeTransaction", - "printedName": "deactivateAllStakeTransaction", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291071,65 +293832,100 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "withdrawTransaction", - "printedName": "withdrawTransaction", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + }, { "kind": "TypeNominal", "name": "TW_Solana_Proto_WithdrawStake", @@ -291137,13 +293933,35 @@ "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "AccessControl" ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -291152,79 +293970,103 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "TW_Solana_Proto_StakeAccountValue", + "children": [ { "kind": "Var", - "name": "withdrawAllTransaction", - "printedName": "withdrawAllTransaction", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291233,15 +294075,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291256,15 +294099,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291279,8 +294123,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291289,23 +294133,27 @@ }, { "kind": "Var", - "name": "createTokenAccountTransaction", - "printedName": "createTokenAccountTransaction", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291314,15 +294162,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291337,15 +294186,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291360,8 +294210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291370,23 +294220,26 @@ }, { "kind": "Var", - "name": "tokenTransferTransaction", - "printedName": "tokenTransferTransaction", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291395,15 +294248,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291418,15 +294272,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291441,33 +294296,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "createAndTransferTokenTransaction", - "printedName": "createAndTransferTokenTransaction", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291476,79 +294358,47 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createNonceAccount", - "printedName": "createNonceAccount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291557,79 +294407,249 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "TW_Solana_Proto_WithdrawAllStake", + "children": [ { "kind": "Var", - "name": "withdrawNonceAccount", - "printedName": "withdrawNonceAccount", + "name": "stakeAccounts", + "printedName": "stakeAccounts", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291638,15 +294658,24 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291661,15 +294690,24 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291684,8 +294722,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291694,23 +294732,26 @@ }, { "kind": "Var", - "name": "advanceNonceAccount", - "printedName": "advanceNonceAccount", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291719,15 +294760,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291742,15 +294784,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291765,18 +294808,39 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "sender", - "printedName": "sender", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -291786,15 +294850,17 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -291810,60 +294876,265 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "set" + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "TW_Solana_Proto_CreateTokenAccount", + "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "mainAddress", + "printedName": "mainAddress", "children": [ { "kind": "TypeNominal", @@ -291873,8 +295144,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -291897,8 +295168,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -291921,8 +295192,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -291939,8 +295210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291949,19 +295220,19 @@ }, { "kind": "Var", - "name": "feePayerPrivateKey", - "printedName": "feePayerPrivateKey", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -291978,14 +295249,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292002,14 +295273,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292026,8 +295297,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292036,8 +295307,8 @@ }, { "kind": "Var", - "name": "feePayer", - "printedName": "feePayer", + "name": "tokenAddress", + "printedName": "tokenAddress", "children": [ { "kind": "TypeNominal", @@ -292047,8 +295318,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -292071,8 +295342,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292095,8 +295366,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292113,8 +295384,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292134,8 +295405,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -292157,8 +295428,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292181,8 +295452,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292199,8 +295470,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292208,789 +295479,133 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_TransactionType", - "printedName": "OneOf_TransactionType", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "transferTransaction", - "printedName": "transferTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { - "kind": "Var", - "name": "delegateStakeTransaction", - "printedName": "delegateStakeTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "deactivateStakeTransaction", - "printedName": "deactivateStakeTransaction", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Var", - "name": "deactivateAllStakeTransaction", - "printedName": "deactivateAllStakeTransaction", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawTransaction", - "printedName": "withdrawTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawAllTransaction", - "printedName": "withdrawAllTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createTokenAccountTransaction", - "printedName": "createTokenAccountTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "tokenTransferTransaction", - "printedName": "tokenTransferTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createAndTransferTokenTransaction", - "printedName": "createAndTransferTokenTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createNonceAccount", - "printedName": "createNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawNonceAccount", - "printedName": "withdrawNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "advanceNonceAccount", - "printedName": "advanceNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", @@ -293000,8 +295615,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -293031,8 +295646,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -293056,20 +295671,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293091,8 +295706,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293110,8 +295725,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293121,8 +295736,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -293175,13 +295790,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "TW_Solana_Proto_SigningOutput", + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "TW_Solana_Proto_TokenTransfer", "children": [ { "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", "children": [ { "kind": "TypeNominal", @@ -293191,8 +295806,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293215,8 +295830,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293239,8 +295854,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293257,8 +295872,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293267,19 +295882,19 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "senderTokenAddress", + "printedName": "senderTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293296,14 +295911,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293320,14 +295935,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293344,8 +295959,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293354,8 +295969,8 @@ }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "recipientTokenAddress", + "printedName": "recipientTokenAddress", "children": [ { "kind": "TypeNominal", @@ -293365,8 +295980,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293389,8 +296004,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293413,8 +296028,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293431,8 +296046,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293441,8 +296056,182 @@ }, { "kind": "Var", - "name": "unsignedTx", - "printedName": "unsignedTx", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decimals", + "printedName": "decimals", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -293452,8 +296241,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293476,8 +296265,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293500,8 +296289,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293518,8 +296307,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293539,8 +296439,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293562,8 +296462,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293586,8 +296486,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293604,8 +296504,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293619,14 +296519,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -293646,8 +296546,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293672,8 +296572,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -293695,8 +296595,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293721,8 +296621,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -293749,8 +296649,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -293780,8 +296680,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -293805,20 +296705,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293840,8 +296740,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293859,8 +296759,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293870,8 +296770,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -293924,32 +296824,111 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "TW_Solana_Proto_PreSigningOutput", + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "TW_Solana_Proto_CreateAndTransferToken", "children": [ { "kind": "Var", - "name": "signers", - "printedName": "signers", + "name": "recipientMainAddress", + "printedName": "recipientMainAddress", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293966,22 +296945,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293998,22 +296969,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294030,8 +296993,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294040,19 +297003,19 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "recipientTokenAddress", + "printedName": "recipientTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294069,14 +297032,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294093,14 +297056,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294117,8 +297080,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294127,19 +297090,19 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "senderTokenAddress", + "printedName": "senderTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294156,14 +297119,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294180,14 +297143,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294204,8 +297167,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294214,8 +297177,182 @@ }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decimals", + "printedName": "decimals", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -294225,8 +297362,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294249,8 +297386,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294273,8 +297410,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294291,8 +297428,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294312,8 +297560,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294335,8 +297583,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294359,8 +297607,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294377,8 +297625,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294392,14 +297640,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -294419,8 +297667,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294445,8 +297693,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -294468,8 +297716,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294494,8 +297742,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -294522,8 +297770,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -294553,8 +297801,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -294578,20 +297826,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294613,8 +297861,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -294632,8 +297880,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -294643,8 +297891,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -294695,25 +297943,15 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SolanaAddress", - "printedName": "SolanaAddress", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "TW_Solana_Proto_CreateNonceAccount", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -294723,14 +297961,16 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -294745,386 +297985,313 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.SolanaAddress?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SolanaAddress", - "printedName": "WalletCore.SolanaAddress", - "usr": "s:10WalletCore13SolanaAddressC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rent", + "printedName": "rent", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SolanaAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "defaultTokenAddress", - "printedName": "defaultTokenAddress(tokenMintAddress:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", - "mangledName": "$s10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore13SolanaAddressC", - "mangledName": "$s10WalletCore13SolanaAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + ] }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StarkExMessageSigner", - "printedName": "StarkExMessageSigner", - "children": [ - { - "kind": "Function", - "name": "signMessage", - "printedName": "signMessage(privateKey:message:)", + "kind": "Var", + "name": "nonceAccountPrivateKey", + "printedName": "nonceAccountPrivateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Func", - "usr": "s:10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", - "mangledName": "$s10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyMessage", - "printedName": "verifyMessage(pubKey:message:signature:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", - "mangledName": "$s10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore20StarkExMessageSignerV", - "mangledName": "$s10WalletCore20StarkExMessageSignerV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StarkWare", - "printedName": "StarkWare", - "children": [ - { - "kind": "Function", - "name": "getStarkKeyFromSignature", - "printedName": "getStarkKeyFromSignature(derivationPath:signature:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "DerivationPath", - "printedName": "WalletCore.DerivationPath", - "usr": "s:10WalletCore14DerivationPathC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", - "mangledName": "$s10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore9StarkWareV", - "mangledName": "$s10WalletCore9StarkWareV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "TW_Stellar_Proto_ClaimPredicate", - "children": [ - { - "kind": "Var", - "name": "predicateUnconditional", - "printedName": "predicateUnconditional", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "UNRECOGNIZED", - "printedName": "UNRECOGNIZED", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> (Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" ] }, { @@ -295134,49 +298301,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate?", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -295185,23 +298317,29 @@ }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -295210,51 +298348,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -295264,109 +298397,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -295375,16 +298535,15 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, "isFromExtension": true, "accessorKind": "get" @@ -295392,43 +298551,41 @@ ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "declKind": "Struct", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Enum", - "printedName": "Enum", - "usr": "s:13SwiftProtobuf4EnumP", - "mangledName": "$s13SwiftProtobuf4EnumP" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -295443,55 +298600,18 @@ "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" } ] }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_Asset", - "printedName": "TW_Stellar_Proto_Asset", + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "TW_Solana_Proto_WithdrawNonceAccount", "children": [ { "kind": "Var", - "name": "issuer", - "printedName": "issuer", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -295501,8 +298621,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -295525,8 +298645,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295549,8 +298669,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295567,8 +298687,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295577,8 +298697,8 @@ }, { "kind": "Var", - "name": "alphanum4", - "printedName": "alphanum4", + "name": "recipient", + "printedName": "recipient", "children": [ { "kind": "TypeNominal", @@ -295588,14 +298708,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -295612,8 +298731,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295636,8 +298755,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295654,8 +298773,94 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295675,8 +298880,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -295698,8 +298903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295722,8 +298927,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295740,8 +298945,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295755,14 +298960,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetVACycfc", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -295782,8 +298987,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295808,8 +299013,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -295831,8 +299036,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295857,8 +299062,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -295885,8 +299090,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -295916,8 +299121,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -295941,20 +299146,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295976,8 +299181,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -295995,8 +299200,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296006,12 +299211,11 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -296060,13 +299264,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "TW_Stellar_Proto_OperationCreateAccount", + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "TW_Solana_Proto_AdvanceNonceAccount", "children": [ { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -296076,8 +299280,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296100,8 +299304,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296124,95 +299328,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296229,8 +299346,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296250,8 +299367,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296273,8 +299390,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296297,8 +299414,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296315,8 +299432,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296330,14 +299447,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -296357,8 +299474,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296383,8 +299500,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -296406,8 +299523,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296432,8 +299549,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -296460,8 +299577,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -296491,8 +299608,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -296516,20 +299633,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296551,8 +299668,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296570,8 +299687,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296581,12 +299698,11 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -296635,24 +299751,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "TW_Stellar_Proto_OperationPayment", + "name": "TW_Solana_Proto_SigningInput", + "printedName": "TW_Solana_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296669,14 +299785,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296693,14 +299809,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296717,8 +299833,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296727,24 +299843,27 @@ }, { "kind": "Var", - "name": "asset", - "printedName": "asset", + "name": "recentBlockhash", + "printedName": "recentBlockhash", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296753,15 +299872,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -296776,15 +299896,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -296799,8 +299920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296809,8 +299930,8 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", + "name": "v0Msg", + "printedName": "v0Msg", "children": [ { "kind": "TypeNominal", @@ -296820,13 +299941,15 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296841,50 +299964,79 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" + ] }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "transactionType", + "printedName": "transactionType", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296901,14 +300053,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296925,14 +300085,22 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296949,8 +300117,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296959,26 +300127,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "transferTransaction", + "printedName": "transferTransaction", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296987,16 +300152,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297011,16 +300175,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297035,60 +300198,33 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "delegateStakeTransaction", + "printedName": "delegateStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297097,47 +300233,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "deactivateStakeTransaction", + "printedName": "deactivateStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297146,136 +300314,160 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "deactivateAllStakeTransaction", + "printedName": "deactivateAllStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" } ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "withdrawTransaction", + "printedName": "withdrawTransaction", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -297284,99 +300476,78 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "TW_Stellar_Proto_OperationChangeTrust", - "children": [ { "kind": "Var", - "name": "asset", - "printedName": "asset", + "name": "withdrawAllTransaction", + "printedName": "withdrawAllTransaction", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -297386,14 +300557,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -297409,14 +300580,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -297432,8 +300603,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -297442,23 +300613,22 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", + "name": "createTokenAccountTransaction", + "printedName": "createTokenAccountTransaction", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -297468,64 +300638,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", "moduleName": "WalletCore", "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" + ] }, { "kind": "Var", - "name": "validBefore", - "printedName": "validBefore", + "name": "tokenTransferTransaction", + "printedName": "tokenTransferTransaction", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297534,16 +300719,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297558,16 +300742,15 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297582,8 +300765,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -297592,26 +300775,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "createAndTransferTokenTransaction", + "printedName": "createAndTransferTokenTransaction", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297620,16 +300800,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297644,16 +300823,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297668,60 +300846,33 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "createNonceAccount", + "printedName": "createNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297730,47 +300881,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "withdrawNonceAccount", + "printedName": "withdrawNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297779,259 +300962,15 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "TW_Stellar_Proto_Claimant", - "children": [ - { - "kind": "Var", - "name": "account", - "printedName": "account", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -298046,16 +300985,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -298070,8 +301008,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298080,27 +301018,23 @@ }, { "kind": "Var", - "name": "predicate", - "printedName": "predicate", + "name": "advanceNonceAccount", + "printedName": "advanceNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -298109,16 +301043,15 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -298133,16 +301066,15 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -298157,8 +301089,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298167,24 +301099,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "sender", + "printedName": "sender", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -298195,14 +301128,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298219,14 +301152,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298243,39 +301176,18 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -298285,17 +301197,15 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -298311,298 +301221,10 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "children": [ - { - "kind": "Var", - "name": "asset", - "printedName": "asset", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", - "moduleName": "WalletCore", "accessorKind": "get" }, { @@ -298617,15 +301239,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -298640,8 +301263,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298650,82 +301273,19 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "feePayerPrivateKey", + "printedName": "feePayerPrivateKey", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298742,14 +301302,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298766,14 +301326,14 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298790,8 +301350,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298800,27 +301360,19 @@ }, { "kind": "Var", - "name": "claimants", - "printedName": "claimants", + "name": "feePayer", + "printedName": "feePayer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298837,22 +301389,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298869,22 +301413,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298901,8 +301437,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298922,8 +301458,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298945,8 +301481,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298969,8 +301505,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298987,8 +301523,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298996,490 +301532,658 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeDecl", + "name": "OneOf_TransactionType", + "printedName": "OneOf_TransactionType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "transferTransaction", + "printedName": "transferTransaction", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "delegateStakeTransaction", + "printedName": "delegateStakeTransaction", "children": [ { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "deactivateStakeTransaction", + "printedName": "deactivateStakeTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "deactivateAllStakeTransaction", + "printedName": "deactivateAllStakeTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "kind": "Var", + "name": "withdrawTransaction", + "printedName": "withdrawTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "withdrawAllTransaction", + "printedName": "withdrawAllTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "children": [ - { - "kind": "Var", - "name": "balanceID", - "printedName": "balanceID", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "createTokenAccountTransaction", + "printedName": "createTokenAccountTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "tokenTransferTransaction", + "printedName": "tokenTransferTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "createAndTransferTokenTransaction", + "printedName": "createAndTransferTokenTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "createNonceAccount", + "printedName": "createNonceAccount", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "withdrawNonceAccount", + "printedName": "withdrawNonceAccount", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "advanceNonceAccount", + "printedName": "advanceNonceAccount", + "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Func", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, @@ -299490,14 +302194,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -299517,8 +302221,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299543,8 +302247,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -299566,8 +302270,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299592,8 +302296,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -299620,8 +302324,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -299651,8 +302355,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -299676,20 +302380,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299711,8 +302415,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -299730,8 +302434,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -299741,8 +302445,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -299795,24 +302499,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "TW_Stellar_Proto_MemoVoid", + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "TW_Solana_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -299829,14 +302533,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -299853,14 +302557,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -299877,59 +302581,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -299939,46 +302620,84 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -299988,222 +302707,66 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "TW_Stellar_Proto_MemoText", - "children": [ { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "unsignedTx", + "printedName": "unsignedTx", "children": [ { "kind": "TypeNominal", @@ -300213,8 +302776,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300237,8 +302800,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300261,8 +302824,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300279,8 +302842,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300300,8 +302863,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300323,8 +302886,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300347,8 +302910,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300365,8 +302928,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300380,14 +302943,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -300407,8 +302970,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300433,8 +302996,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -300456,8 +303019,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300482,8 +303045,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -300510,8 +303073,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -300541,8 +303104,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -300566,20 +303129,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300601,8 +303164,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -300620,8 +303183,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -300631,8 +303194,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -300685,24 +303248,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "TW_Stellar_Proto_MemoId", + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "TW_Solana_Proto_PreSigningOutput", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "signers", + "printedName": "signers", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300719,14 +303290,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300743,14 +303322,22 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300767,8 +303354,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300777,24 +303364,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -300805,14 +303393,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300829,14 +303417,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300853,59 +303441,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -300915,282 +303480,77 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "TW_Stellar_Proto_MemoHash", - "children": [ { "kind": "Var", - "name": "hash", - "printedName": "hash", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -301207,14 +303567,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -301231,14 +303591,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -301255,8 +303615,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -301276,8 +303636,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -301299,8 +303659,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -301323,8 +303683,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -301341,8 +303701,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -301356,14 +303716,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -301383,8 +303743,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301409,8 +303769,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -301432,8 +303792,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301458,8 +303818,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -301486,8 +303846,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -301517,8 +303877,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -301542,20 +303902,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301577,8 +303937,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -301596,8 +303956,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -301607,8 +303967,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -301659,34 +304019,42 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "TW_Stellar_Proto_SigningInput", + "name": "SolanaAddress", + "printedName": "SolanaAddress", "children": [ { "kind": "Var", - "name": "fee", - "printedName": "fee", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", + "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -301695,154 +304063,195 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", + "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.SolanaAddress?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SolanaAddress", + "printedName": "WalletCore.SolanaAddress", + "usr": "s:10WalletCore13SolanaAddressC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "sequence", - "printedName": "sequence", + "kind": "Function", + "name": "defaultTokenAddress", + "printedName": "defaultTokenAddress(tokenMintAddress:)", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", + "declKind": "Func", + "usr": "s:10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", + "mangledName": "$s10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore13SolanaAddressC", + "mangledName": "$s10WalletCore13SolanaAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StarkExMessageSigner", + "printedName": "StarkExMessageSigner", + "children": [ + { + "kind": "Function", + "name": "signMessage", + "printedName": "signMessage(privateKey:message:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "mangledName": "$s10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "account", - "printedName": "account", + "kind": "Function", + "name": "verifyMessage", + "printedName": "verifyMessage(pubKey:message:signature:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "String", @@ -301850,191 +304259,273 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", + "declKind": "Func", + "usr": "s:10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", + "mangledName": "$s10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore20StarkExMessageSignerV", + "mangledName": "$s10WalletCore20StarkExMessageSignerV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StarkWare", + "printedName": "StarkWare", + "children": [ + { + "kind": "Function", + "name": "getStarkKeyFromSignature", + "printedName": "getStarkKeyFromSignature(derivationPath:signature:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "DerivationPath", + "printedName": "WalletCore.DerivationPath", + "usr": "s:10WalletCore14DerivationPathC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", + "mangledName": "$s10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore9StarkWareV", + "mangledName": "$s10WalletCore9StarkWareV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SwiftProtobuf", + "printedName": "SwiftProtobuf", + "declKind": "Import", + "moduleName": "WalletCore" + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "TW_Stellar_Proto_ClaimPredicate", + "children": [ + { + "kind": "Var", + "name": "predicateUnconditional", + "printedName": "predicateUnconditional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> (Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { "kind": "Var", - "name": "passphrase", - "printedName": "passphrase", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302043,92 +304534,51 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "operationOneof", - "printedName": "operationOneof", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", "RawDocComment" ], + "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -302138,24 +304588,26 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" }, { @@ -302170,24 +304622,26 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "set" }, { @@ -302202,33 +304656,41 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "opCreateAccount", - "printedName": "opCreateAccount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302237,79 +304699,142 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:13SwiftProtobuf4EnumP", + "mangledName": "$s13SwiftProtobuf4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_Asset", + "printedName": "TW_Stellar_Proto_Asset", + "children": [ { "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", + "name": "issuer", + "printedName": "issuer", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302318,15 +304843,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302341,15 +304867,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302364,8 +304891,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302374,23 +304901,27 @@ }, { "kind": "Var", - "name": "opChangeTrust", - "printedName": "opChangeTrust", + "name": "alphanum4", + "printedName": "alphanum4", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302399,15 +304930,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302422,15 +304954,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302445,8 +304978,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302455,23 +304988,26 @@ }, { "kind": "Var", - "name": "opCreateClaimableBalance", - "printedName": "opCreateClaimableBalance", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302480,15 +305016,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302503,15 +305040,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302526,33 +305064,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "opClaimClaimableBalance", - "printedName": "opClaimClaimableBalance", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302561,83 +305126,282 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "TW_Stellar_Proto_OperationCreateAccount", + "children": [ { "kind": "Var", - "name": "memoTypeOneof", - "printedName": "memoTypeOneof", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -302654,22 +305418,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -302686,22 +305442,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -302718,8 +305466,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302728,23 +305476,27 @@ }, { "kind": "Var", - "name": "memoVoid", - "printedName": "memoVoid", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302753,15 +305505,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302776,15 +305529,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302799,8 +305553,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302809,23 +305563,26 @@ }, { "kind": "Var", - "name": "memoText", - "printedName": "memoText", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302834,15 +305591,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302857,15 +305615,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302880,33 +305639,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "memoID", - "printedName": "memoID", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302915,79 +305701,290 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "TW_Stellar_Proto_OperationPayment", + "children": [ { "kind": "Var", - "name": "memoHash", - "printedName": "memoHash", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302996,15 +305993,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -303019,15 +306017,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -303042,8 +306041,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303052,22 +306051,23 @@ }, { "kind": "Var", - "name": "memoReturnHash", - "printedName": "memoReturnHash", + "name": "asset", + "printedName": "asset", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -303077,14 +306077,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -303100,14 +306100,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -303123,8 +306123,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303133,8 +306133,71 @@ }, { "kind": "Var", - "name": "timeBounds", - "printedName": "timeBounds", + "name": "hasAsset", + "printedName": "hasAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", @@ -303144,13 +306207,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -303167,8 +306231,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -303191,8 +306255,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -303209,8 +306273,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303230,8 +306294,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -303253,8 +306317,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -303277,8 +306341,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -303295,8 +306359,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303304,717 +306368,105 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_OperationOneof", - "printedName": "OneOf_OperationOneof", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "opCreateAccount", - "printedName": "opCreateAccount", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opChangeTrust", - "printedName": "opChangeTrust", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opCreateClaimableBalance", - "printedName": "opCreateClaimableBalance", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opClaimClaimableBalance", - "printedName": "opClaimClaimableBalance", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MemoTypeOneof", - "printedName": "OneOf_MemoTypeOneof", - "children": [ - { - "kind": "Var", - "name": "memoVoid", - "printedName": "memoVoid", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoText", - "printedName": "memoText", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoID", - "printedName": "memoID", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoHash", - "printedName": "memoHash", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoReturnHash", - "printedName": "memoReturnHash", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -304024,8 +306476,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304052,8 +306504,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -304083,8 +306535,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -304108,20 +306560,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304143,8 +306595,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304162,8 +306614,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304173,8 +306625,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -304227,32 +306679,29 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "TW_Stellar_Proto_SigningOutput", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "TW_Stellar_Proto_OperationChangeTrust", "children": [ { "kind": "Var", - "name": "signature", - "printedName": "signature", + "name": "asset", + "printedName": "asset", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -304261,16 +306710,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -304285,16 +306733,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -304309,8 +306756,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304319,27 +306766,24 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "hasAsset", + "printedName": "hasAsset", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -304348,77 +306792,56 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "validBefore", + "printedName": "validBefore", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -304435,14 +306858,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -304459,14 +306882,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -304483,8 +306906,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304504,8 +306927,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -304527,8 +306950,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -304551,8 +306974,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -304569,8 +306992,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304584,14 +307007,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -304611,8 +307034,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304637,8 +307060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304660,8 +307083,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304686,8 +307109,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304714,8 +307137,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -304745,8 +307168,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -304770,20 +307193,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304805,8 +307228,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304824,8 +307247,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304835,8 +307258,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -304889,244 +307312,315 @@ }, { "kind": "TypeDecl", - "name": "StellarMemoType", - "printedName": "StellarMemoType", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "TW_Stellar_Proto_Claimant", "children": [ { "kind": "Var", - "name": "none", - "printedName": "none", + "name": "account", + "printedName": "account", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4noneyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4noneyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "predicate", + "printedName": "predicate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4textyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4textyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "id", - "printedName": "id", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO2idyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO2idyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "hash", - "printedName": "hash", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4hashyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4hashyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "return", - "printedName": "return", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO6returnyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO6returnyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarMemoType?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305135,46 +307629,185 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", + "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -305183,46 +307816,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore15StellarMemoTypeO", - "mangledName": "$s10WalletCore15StellarMemoTypeO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -305233,155 +307878,119 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "StellarPassphrase", - "printedName": "StellarPassphrase", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "TW_Stellar_Proto_OperationCreateClaimableBalance", "children": [ { "kind": "Var", - "name": "stellar", - "printedName": "stellar", + "name": "asset", + "printedName": "asset", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarPassphrase.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ] + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore17StellarPassphraseO7stellaryA2CmF", - "mangledName": "$s10WalletCore17StellarPassphraseO7stellaryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "kin", - "printedName": "kin", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarPassphrase.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ] + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore17StellarPassphraseO3kinyA2CmF", - "mangledName": "$s10WalletCore17StellarPassphraseO3kinyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hasAsset", + "printedName": "hasAsset", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvp", - "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -305391,69 +308000,64 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvg", - "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", "moduleName": "WalletCore", "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarPassphrase?", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "declKind": "Func", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305462,46 +308066,93 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "claimants", + "printedName": "claimants", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305511,317 +308162,209 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", "moduleName": "WalletCore", - "static": true, "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore17StellarPassphraseO", - "mangledName": "$s10WalletCore17StellarPassphraseO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StellarVersionByte", - "printedName": "StellarVersionByte", - "children": [ - { - "kind": "Var", - "name": "accountID", - "printedName": "accountID", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO9accountIDyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO9accountIDyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "seed", - "printedName": "seed", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO4seedyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO4seedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "preAuthTX", - "printedName": "preAuthTX", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "sha256Hash", - "printedName": "sha256Hash", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO10sha256HashyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO10sha256HashyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarVersionByte?", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305830,46 +308373,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305878,517 +308422,327 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore18StellarVersionByteO", - "mangledName": "$s10WalletCore18StellarVersionByteO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt16", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StoredKey", - "printedName": "StoredKey", - "children": [ { "kind": "Function", - "name": "load", - "printedName": "load(path:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", - "mangledName": "$s10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Mutating", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "importPrivateKey", - "printedName": "importPrivateKey(privateKey:name:password:coin:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", - "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "importPrivateKeyWithEncryption", - "printedName": "importPrivateKeyWithEncryption(privateKey:name:password:coin:encryption:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" }, { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", - "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "importHDWallet", - "printedName": "importHDWallet(mnemonic:name:password:coin:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", - "mangledName": "$s10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "importHDWalletWithEncryption", - "printedName": "importHDWalletWithEncryption(mnemonic:name:password:coin:encryption:)", - "children": [ + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "children": [ + { + "kind": "Var", + "name": "balanceID", + "printedName": "balanceID", + "children": [ { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", - "mangledName": "$s10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "declKind": "Var", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "importJSON", - "printedName": "importJSON(json:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", - "mangledName": "$s10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "identifier", - "printedName": "identifier", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvp", - "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvg", - "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC4nameSSvp", - "mangledName": "$s10WalletCore9StoredKeyC4nameSSvp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306397,43 +308751,108 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC4nameSSvg", - "mangledName": "$s10WalletCore9StoredKeyC4nameSSvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isMnemonic", - "printedName": "isMnemonic", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvp", - "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306442,43 +308861,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvg", - "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "accountCount", - "printedName": "accountCount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC12accountCountSivp", - "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306487,476 +308910,331 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC12accountCountSivg", - "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "encryptionParameters", - "printedName": "encryptionParameters", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvp", - "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvg", - "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryptionLevel:)", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ + "Mutating", "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryptionLevel:encryption:)", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryption:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "declKind": "Var", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "account", - "printedName": "account(index:)", - "children": [ + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "TW_Stellar_Proto_MemoVoid", + "children": [ + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", - "mangledName": "$s10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "accountForCoin", - "printedName": "accountForCoin(coin:wallet:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", - "mangledName": "$s10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "accountForCoinDerivation", - "printedName": "accountForCoinDerivation(coin:derivation:wallet:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", - "mangledName": "$s10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addAccountDerivation", - "printedName": "addAccountDerivation(address:coin:derivation:derivationPath:publicKey:extendedPublicKey:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", - "mangledName": "$s10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "addAccount", - "printedName": "addAccount(address:coin:derivationPath:publicKey:extendedPublicKey:)", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "String", @@ -306964,49 +309242,96 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", - "mangledName": "$s10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "removeAccountForCoin", - "printedName": "removeAccountForCoin(coin:)", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", - "mangledName": "$s10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "removeAccountForCoinDerivation", - "printedName": "removeAccountForCoinDerivation(coin:derivation:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -307015,32 +309340,29 @@ }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", - "mangledName": "$s10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Mutating", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "removeAccountForCoinDerivationPath", - "printedName": "removeAccountForCoinDerivationPath(coin:derivationPath:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -307049,32 +309371,28 @@ }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", - "mangledName": "$s10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "store", - "printedName": "store(path:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", @@ -307084,68 +309402,156 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC5store4pathSbSS_tF", - "mangledName": "$s10WalletCore9StoredKeyC5store4pathSbSS_tF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "decryptPrivateKey", - "printedName": "decryptPrivateKey(password:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "TW_Stellar_Proto_MemoText", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptMnemonic", - "printedName": "decryptMnemonic(password:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -307154,348 +309560,189 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "privateKey", - "printedName": "privateKey(coin:password:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", - "mangledName": "$s10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "wallet", - "printedName": "wallet(password:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "exportJSON", - "printedName": "exportJSON()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", - "mangledName": "$s10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fixAddresses", - "printedName": "fixAddresses(password:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore9StoredKeyC", - "mangledName": "$s10WalletCore9StoredKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "StoredKeyEncryption", - "printedName": "StoredKeyEncryption", - "children": [ - { - "kind": "Var", - "name": "aes128Ctr", - "printedName": "aes128Ctr", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "aes128Cbc", - "printedName": "aes128Cbc", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", - "moduleName": "WalletCore" + ] }, { - "kind": "Var", - "name": "aes192Ctr", - "printedName": "aes192Ctr", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "aes256Ctr", - "printedName": "aes256Ctr", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] - } + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", - "moduleName": "WalletCore" + "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -307504,79 +309751,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKeyEncryption?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -307585,359 +309800,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore19StoredKeyEncryptionO", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StoredKeyEncryptionLevel", - "printedName": "StoredKeyEncryptionLevel", - "children": [ - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", - "moduleName": "WalletCore" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Var", - "name": "minimal", - "printedName": "minimal", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "weak", - "printedName": "weak", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "standard", - "printedName": "standard", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", - "moduleName": "WalletCore" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKeyEncryptionLevel?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -307946,46 +309938,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -307996,182 +310000,33 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Era", - "printedName": "TW_Substrate_Proto_Era", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "TW_Stellar_Proto_MemoId", "children": [ { "kind": "Var", - "name": "blockNumber", - "printedName": "blockNumber", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64VvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "period", - "printedName": "period", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308188,14 +310043,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308212,14 +310067,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvs", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308236,8 +310091,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64VvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64VvM", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308257,8 +310112,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308280,8 +310135,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308304,8 +310159,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308322,8 +310177,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308337,14 +310192,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraVACycfc", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraVACycfc", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -308364,8 +310219,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308390,8 +310245,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -308413,8 +310268,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308439,8 +310294,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -308467,8 +310322,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -308498,8 +310353,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -308523,20 +310378,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308558,8 +310413,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV9hashValueSivp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV9hashValueSivp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -308577,8 +310432,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV9hashValueSivg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV9hashValueSivg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -308588,11 +310443,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -308641,32 +310497,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Balance", - "printedName": "TW_Substrate_Proto_Balance", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "TW_Stellar_Proto_MemoHash", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "hash", + "printedName": "hash", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308683,22 +310531,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308715,22 +310555,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308747,8 +310579,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308757,23 +310589,26 @@ }, { "kind": "Var", - "name": "transfer", - "printedName": "transfer", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308782,15 +310617,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -308805,15 +310641,16 @@ }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -308828,33 +310665,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308863,79 +310727,290 @@ "children": [ { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "TW_Stellar_Proto_SigningInput", + "children": [ { "kind": "Var", - "name": "assetTransfer", - "printedName": "assetTransfer", + "name": "fee", + "printedName": "fee", "children": [ { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308944,15 +311019,16 @@ "children": [ { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -308967,15 +311043,16 @@ }, { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -308990,8 +311067,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309000,23 +311077,27 @@ }, { "kind": "Var", - "name": "batchAssetTransfer", - "printedName": "batchAssetTransfer", + "name": "sequence", + "printedName": "sequence", "children": [ { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -309025,15 +311106,16 @@ "children": [ { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -309048,15 +311130,16 @@ }, { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -309071,8 +311154,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309081,24 +311164,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "account", + "printedName": "account", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -309109,14 +311193,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -309133,14 +311217,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -309157,8 +311241,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309166,528 +311250,33 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Var", + "name": "privateKey", + "printedName": "privateKey", "children": [ { - "kind": "Var", - "name": "transfer", - "printedName": "transfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.Transfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.Transfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "assetTransfer", - "printedName": "assetTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "batchAssetTransfer", - "printedName": "batchAssetTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Enum", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Transfer", - "printedName": "Transfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -309696,5561 +311285,110 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "memo", - "printedName": "memo", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchTransfer", - "printedName": "BatchTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AssetTransfer", - "printedName": "AssetTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "value", - "printedName": "value", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "assetID", - "printedName": "assetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "feeAssetID", - "printedName": "feeAssetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchAssetTransfer", - "printedName": "BatchAssetTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "feeAssetID", - "printedName": "feeAssetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceVACycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "TW_Substrate_Proto_Authorization", - "children": [ - { - "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "joinIdentity", - "printedName": "joinIdentity", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "joinIdentity", - "printedName": "joinIdentity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO12joinIdentityyAeC04JoinL0VcAEmF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO12joinIdentityyAeC04JoinL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "JoinIdentity", - "printedName": "JoinIdentity", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "target", - "printedName": "target", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasData", - "printedName": "hasData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearData", - "printedName": "clearData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9clearDatayyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9clearDatayyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "expiry", - "printedName": "expiry", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DataMessage", - "printedName": "DataMessage", - "children": [ - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageVAGycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageVAGycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV2eeoiySbAG_AGtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV2eeoiySbAG_AGtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AuthData", - "printedName": "AuthData", - "children": [ - { - "kind": "Var", - "name": "asset", - "printedName": "asset", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV10clearAssetyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "extrinsic", - "printedName": "extrinsic", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasExtrinsic", - "printedName": "hasExtrinsic", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearExtrinsic", - "printedName": "clearExtrinsic()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearExtrinsicyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearExtrinsicyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "portfolio", - "printedName": "portfolio", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasPortfolio", - "printedName": "hasPortfolio", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearPortfolio", - "printedName": "clearPortfolio()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearPortfolioyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearPortfolioyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataVAGycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataVAGycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV2eeoiySbAG_AGtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV2eeoiySbAG_AGtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityVAEycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "passphrase", + "printedName": "passphrase", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "init_kind": "Designated" + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -315258,127 +311396,186 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "operationOneof", + "printedName": "operationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opCreateAccount", + "printedName": "opCreateAccount", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessorKind": "get" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -315387,198 +311584,391 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opChangeTrust", + "printedName": "opChangeTrust", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opCreateClaimableBalance", + "printedName": "opCreateClaimableBalance", + "children": [ { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "opClaimClaimableBalance", + "printedName": "opClaimClaimableBalance", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationVACycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationVACycfc", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "memoTypeOneof", + "printedName": "memoTypeOneof", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -315588,47 +311978,97 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "memoVoid", + "printedName": "memoVoid", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315637,136 +312077,241 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Var", + "name": "memoText", + "printedName": "memoText", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", "declAttributes": [ - "Mutating", "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "memoID", + "printedName": "memoID", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "memoHash", + "printedName": "memoHash", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -315775,110 +312320,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Identity", - "printedName": "TW_Substrate_Proto_Identity", - "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "memoReturnHash", + "printedName": "memoReturnHash", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315887,24 +312401,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -315919,24 +312424,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -315951,8 +312447,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -315961,23 +312457,26 @@ }, { "kind": "Var", - "name": "joinIdentityAsKey", - "printedName": "joinIdentityAsKey", + "name": "timeBounds", + "printedName": "timeBounds", "children": [ { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315986,15 +312485,16 @@ "children": [ { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -316009,15 +312509,16 @@ }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -316032,8 +312533,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -316053,8 +312554,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -316076,8 +312577,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -316100,8 +312601,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -316118,8 +312619,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -316128,48 +312629,248 @@ }, { "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "name": "OneOf_OperationOneof", + "printedName": "OneOf_OperationOneof", "children": [ { "kind": "Var", - "name": "joinIdentityAsKey", - "printedName": "joinIdentityAsKey", + "name": "opCreateAccount", + "printedName": "opCreateAccount", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof.Type", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opChangeTrust", + "printedName": "opChangeTrust", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opCreateClaimableBalance", + "printedName": "opCreateClaimableBalance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opClaimClaimableBalance", + "printedName": "opClaimClaimableBalance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ] } @@ -316177,8 +312878,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", "moduleName": "WalletCore" }, { @@ -316194,20 +312895,20 @@ }, { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" }, { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -316215,11 +312916,12 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -316233,533 +312935,258 @@ }, { "kind": "TypeDecl", - "name": "JoinIdentityAsKey", - "printedName": "JoinIdentityAsKey", + "name": "OneOf_MemoTypeOneof", + "printedName": "OneOf_MemoTypeOneof", "children": [ { "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", + "name": "memoVoid", + "printedName": "memoVoid", "children": [ { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + } + ] }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "authID", - "printedName": "authID", + "name": "memoText", + "printedName": "memoText", "children": [ { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ] }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "memoID", + "printedName": "memoID", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ] }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyVAEycfc", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "memoHash", + "printedName": "memoHash", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ] + }, { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "memoReturnHash", + "printedName": "memoReturnHash", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Function", @@ -316774,113 +313201,35 @@ }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", - "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV", + "declKind": "Enum", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, { "kind": "Conformance", "name": "Equatable", @@ -316897,14 +313246,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityVACycfc", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityVACycfc", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -316924,8 +313273,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -316950,8 +313299,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -316973,8 +313322,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -316999,8 +313348,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317027,8 +313376,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -317058,8 +313407,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -317083,20 +313432,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317118,8 +313467,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317137,8 +313486,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317148,11 +313497,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -317201,32 +313551,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "TW_Substrate_Proto_PolymeshCall", + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "TW_Stellar_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "signature", + "printedName": "signature", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -317243,22 +313585,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -317275,22 +313609,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -317307,8 +313633,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317317,23 +313643,27 @@ }, { "kind": "Var", - "name": "authorizationCall", - "printedName": "authorizationCall", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -317342,15 +313672,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -317365,15 +313696,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -317388,8 +313720,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317398,23 +313730,27 @@ }, { "kind": "Var", - "name": "identityCall", - "printedName": "identityCall", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -317423,15 +313759,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -317446,15 +313783,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -317469,8 +313807,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317490,8 +313828,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -317513,8 +313851,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -317537,8 +313875,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -317555,169 +313893,14 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "authorizationCall", - "printedName": "authorizationCall", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Authorization) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO013authorizationG0yAeA0c1_d1_E14_AuthorizationVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO013authorizationG0yAeA0c1_d1_E14_AuthorizationVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "identityCall", - "printedName": "identityCall", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Identity) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, { "kind": "Constructor", "name": "init", @@ -317725,14 +313908,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallVACycfc", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallVACycfc", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -317752,8 +313935,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317778,8 +313961,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317801,8 +313984,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317827,8 +314010,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317855,8 +314038,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -317886,8 +314069,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -317911,20 +314094,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317946,8 +314129,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317965,8 +314148,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317976,11 +314159,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -318029,110 +314213,292 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "TW_Substrate_Proto_SigningInput", + "name": "StellarMemoType", + "printedName": "StellarMemoType", "children": [ { "kind": "Var", - "name": "blockHash", - "printedName": "blockHash", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4noneyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4noneyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4textyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4textyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO2idyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO2idyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4hashyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4hashyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "return", + "printedName": "return", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO6returnyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO6returnyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarMemoType?", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "moduleName": "WalletCore", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "genesisHash", - "printedName": "genesisHash", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvp", + "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318141,79 +314507,205 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore15StellarMemoTypeO", + "mangledName": "$s10WalletCore15StellarMemoTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StellarPassphrase", + "printedName": "StellarPassphrase", + "children": [ + { + "kind": "Var", + "name": "stellar", + "printedName": "stellar", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarPassphrase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore17StellarPassphraseO7stellaryA2CmF", + "mangledName": "$s10WalletCore17StellarPassphraseO7stellaryA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "kin", + "printedName": "kin", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarPassphrase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore17StellarPassphraseO3kinyA2CmF", + "mangledName": "$s10WalletCore17StellarPassphraseO3kinyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "nonce", - "printedName": "nonce", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvp", + "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvp", + "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -318223,64 +314715,56 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvg", + "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvg", + "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvg", "moduleName": "WalletCore", "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarPassphrase?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "specVersion", - "printedName": "specVersion", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -318290,12 +314774,10 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvp", + "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318310,73 +314792,40 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32VvM", + "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "transactionVersion", - "printedName": "transactionVersion", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318385,162 +314834,318 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvg", + "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore17StellarPassphraseO", + "mangledName": "$s10WalletCore17StellarPassphraseO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UInt32", "printedName": "Swift.UInt32", "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StellarVersionByte", + "printedName": "StellarVersionByte", + "children": [ { "kind": "Var", - "name": "tip", - "printedName": "tip", + "name": "accountID", + "printedName": "accountID", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO9accountIDyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO9accountIDyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "seed", + "printedName": "seed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] + } + ] + } ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO4seedyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO4seedyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "preAuthTX", + "printedName": "preAuthTX", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "sha256Hash", + "printedName": "sha256Hash", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO10sha256HashyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO10sha256HashyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarVersionByte?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "era", - "printedName": "era", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", + "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318549,311 +315154,511 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore18StellarVersionByteO", + "mangledName": "$s10WalletCore18StellarVersionByteO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "hasEra", - "printedName": "hasEra", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" + ] } - ] - }, + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StoredKey", + "printedName": "StoredKey", + "children": [ { "kind": "Function", - "name": "clearEra", - "printedName": "clearEra()", + "name": "load", + "printedName": "load(path:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "WalletCore.StoredKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV8clearErayyF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV8clearErayyF", + "usr": "s:10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", + "mangledName": "$s10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Mutating", + "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "kind": "Function", + "name": "importPrivateKey", + "printedName": "importPrivateKey(privateKey:name:password:coin:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", + "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importPrivateKeyWithEncryption", + "printedName": "importPrivateKeyWithEncryption(privateKey:name:password:coin:encryption:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", + "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importHDWallet", + "printedName": "importHDWallet(mnemonic:name:password:coin:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "mangledName": "$s10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importHDWalletWithEncryption", + "printedName": "importHDWalletWithEncryption(mnemonic:name:password:coin:encryption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "mangledName": "$s10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importJSON", + "printedName": "importJSON(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", + "mangledName": "$s10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "identifier", + "printedName": "identifier", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", + "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvp", + "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -318864,93 +315669,49 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvg", + "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", + "usr": "s:10WalletCore9StoredKeyC4nameSSvp", + "mangledName": "$s10WalletCore9StoredKeyC4nameSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -318960,64 +315721,26 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "usr": "s:10WalletCore9StoredKeyC4nameSSvg", + "mangledName": "$s10WalletCore9StoredKeyC4nameSSvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "multiAddress", - "printedName": "multiAddress", + "name": "isMnemonic", + "printedName": "isMnemonic", "children": [ { "kind": "TypeNominal", @@ -319027,11 +315750,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvp", + "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvp", + "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -319047,72 +315772,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvs", + "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvg", + "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "polymeshCall", - "printedName": "polymeshCall", + "name": "accountCount", + "printedName": "accountCount", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", + "usr": "s:10WalletCore9StoredKeyC12accountCountSivp", + "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -319122,77 +315811,48 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", + "usr": "s:10WalletCore9StoredKeyC12accountCountSivg", + "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "hasPolymeshCall", - "printedName": "hasPolymeshCall", + "name": "encryptionParameters", + "printedName": "encryptionParameters", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvp", + "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvp", + "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvp", "moduleName": "WalletCore", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], @@ -319204,258 +315864,423 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvg", + "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvg", + "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvg", "moduleName": "WalletCore", + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "clearPolymeshCall", - "printedName": "clearPolymeshCall()", + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryptionLevel:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" } ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17clearPolymeshCallyyF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17clearPolymeshCallyyF", + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", "moduleName": "WalletCore", "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "Mutating" + "init_kind": "Designated" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryptionLevel:encryption:)", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "account", + "printedName": "account(index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "mangledName": "$s10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accountForCoin", + "printedName": "accountForCoin(coin:wallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", + "mangledName": "$s10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Function", + "name": "accountForCoinDerivation", + "printedName": "accountForCoinDerivation(coin:derivation:wallet:)", "children": [ { - "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance) -> WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance) -> WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "moduleName": "WalletCore" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" } ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", + "mangledName": "$s10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "addAccountDerivation", + "printedName": "addAccountDerivation(address:coin:derivation:derivationPath:publicKey:extendedPublicKey:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputVACycfc", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", + "mangledName": "$s10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Function", + "name": "addAccount", + "printedName": "addAccount(address:coin:derivationPath:publicKey:extendedPublicKey:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "String", @@ -319463,96 +316288,49 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvpZ", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", + "mangledName": "$s10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Function", + "name": "removeAccountForCoin", + "printedName": "removeAccountForCoin(coin:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", + "mangledName": "$s10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "name": "removeAccountForCoinDerivation", + "printedName": "removeAccountForCoinDerivation(coin:derivation:)", "children": [ { "kind": "TypeNominal", @@ -319561,29 +316339,32 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", + "mangledName": "$s10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", "declAttributes": [ - "Mutating", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "removeAccountForCoinDerivationPath", + "printedName": "removeAccountForCoinDerivationPath(coin:derivationPath:)", "children": [ { "kind": "TypeNominal", @@ -319592,28 +316373,32 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", + "mangledName": "$s10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "store", + "printedName": "store(path:)", "children": [ { "kind": "TypeNominal", @@ -319623,133 +316408,218 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC5store4pathSbSS_tF", + "mangledName": "$s10WalletCore9StoredKeyC5store4pathSbSS_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptPrivateKey", + "printedName": "decryptPrivateKey(password:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Function", + "name": "decryptMnemonic", + "printedName": "decryptMnemonic(password:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "privateKey", + "printedName": "privateKey(coin:password:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "mangledName": "$s10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "wallet", + "printedName": "wallet(password:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", + "children": [ + { + "kind": "TypeNominal", + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "TW_Substrate_Proto_SigningOutput", - "children": [ + "kind": "Function", + "name": "exportJSON", + "printedName": "exportJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", + "mangledName": "$s10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { - "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "kind": "Function", + "name": "fixAddresses", + "printedName": "fixAddresses(password:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Data", @@ -319757,262 +316627,199 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore9StoredKeyC", + "mangledName": "$s10WalletCore9StoredKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "StoredKeyEncryption", + "printedName": "StoredKeyEncryption", + "children": [ + { + "kind": "Var", + "name": "aes128Ctr", + "printedName": "aes128Ctr", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "aes128Cbc", + "printedName": "aes128Cbc", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "aes192Ctr", + "printedName": "aes192Ctr", "children": [ { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "aes256Ctr", + "printedName": "aes256Ctr", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -320021,136 +316828,79 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "name": "Optional", + "printedName": "WalletCore.StoredKeyEncryption?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -320159,58 +316909,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV", + "declKind": "Enum", + "usr": "s:10WalletCore19StoredKeyEncryptionO", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -320221,121 +316959,228 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SubstrateAddress", - "printedName": "SubstrateAddress", + "name": "StoredKeyEncryptionLevel", + "printedName": "StoredKeyEncryptionLevel", "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "default", + "printedName": "default", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" - }, - { - "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore16SubstrateAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore16SubstrateAddressC2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:network:)", + "kind": "Var", + "name": "minimal", + "printedName": "minimal", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "weak", + "printedName": "weak", + "children": [ { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore16SubstrateAddressC13isValidString6string7networkSbSS_s5Int32VtFZ", - "mangledName": "$s10WalletCore16SubstrateAddressC13isValidString6string7networkSbSS_s5Int32VtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore16SubstrateAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore16SubstrateAddressC11descriptionSSvp", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -320344,18 +317189,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore16SubstrateAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore16SubstrateAddressC11descriptionSSvg", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] @@ -320363,202 +317206,171 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(string:network:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.SubstrateAddress?", + "printedName": "WalletCore.StoredKeyEncryptionLevel?", "children": [ { "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore16SubstrateAddressC6string7networkACSgSS_s5Int32Vtcfc", - "mangledName": "$s10WalletCore16SubstrateAddressC6string7networkACSgSS_s5Int32Vtcfc", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(publicKey:network:)", + "kind": "Var", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore16SubstrateAddressC9publicKey7networkAcA06PublicF0C_s5Int32Vtcfc", - "mangledName": "$s10WalletCore16SubstrateAddressC9publicKey7networkAcA06PublicF0C_s5Int32Vtcfc", + "declKind": "Var", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:10WalletCore16SubstrateAddressC", - "mangledName": "$s10WalletCore16SubstrateAddressC", + "declKind": "Enum", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO", "moduleName": "WalletCore", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true, + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SubstrateSigner", - "printedName": "SubstrateSigner", - "children": [ + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { - "kind": "Function", - "name": "message", - "printedName": "message(data:)", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore15SubstrateSignerC7message4data10Foundation4DataVAH_tFZ", - "mangledName": "$s10WalletCore15SubstrateSignerC7message4data10Foundation4DataVAH_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Function", - "name": "transaction", - "printedName": "transaction(data:publicKey:signature:)", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore15SubstrateSignerC11transaction4data9publicKey9signature10Foundation4DataVAJ_A2JtFZ", - "mangledName": "$s10WalletCore15SubstrateSignerC11transaction4data9publicKey9signature10Foundation4DataVAJ_A2JtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } - ], - "declKind": "Class", - "usr": "s:10WalletCore15SubstrateSignerC", - "mangledName": "$s10WalletCore15SubstrateSignerC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true + ] }, { "kind": "Import", @@ -369884,6 +366696,70 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRSValues", + "printedName": "getRSValues(signature:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore8WebAuthnV11getRSValues9signature10Foundation4DataVAH_tFZ", + "mangledName": "$s10WalletCore8WebAuthnV11getRSValues9signature10Foundation4DataVAH_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reconstructOriginalMessage", + "printedName": "reconstructOriginalMessage(authenticatorData:clientDataJSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore8WebAuthnV26reconstructOriginalMessage17authenticatorData06clientI4JSON10Foundation0I0VAI_AItFZ", + "mangledName": "$s10WalletCore8WebAuthnV26reconstructOriginalMessage17authenticatorData06clientI4JSON10Foundation0I0VAI_AItFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Struct", @@ -378668,413 +375544,308 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2337, + "offset": 2189, "length": 15, "value": "\"TW.Barz.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2568, + "offset": 2420, "length": 23, "value": "\".ContractAddressInput\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2662, + "offset": 2514, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2678, - "length": 9, - "value": "\"factory\"" + "offset": 2534, + "length": 13, + "value": "\"entry_point\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2694, + "offset": 2554, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2714, - "length": 19, - "value": "\"diamond_cut_facet\"" + "offset": 2570, + "length": 9, + "value": "\"factory\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2740, + "offset": 2586, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2760, + "offset": 2606, "length": 15, "value": "\"account_facet\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2782, + "offset": 2628, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2802, + "offset": 2648, "length": 20, "value": "\"verification_facet\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2829, + "offset": 2675, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2849, - "length": 22, - "value": "\"token_receiver_facet\"" + "offset": 2695, + "length": 16, + "value": "\"facet_registry\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2878, + "offset": 2718, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2898, - "length": 21, - "value": "\"diamond_loupe_facet\"" + "offset": 2738, + "length": 18, + "value": "\"default_fallback\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2926, + "offset": 2763, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2946, - "length": 14, - "value": "\"diamond_init\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 2967, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 2987, - "length": 16, - "value": "\"facet_registry\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 3010, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 3030, - "length": 13, - "value": "\"entry_point\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 3050, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 3067, + "offset": 2779, "length": 10, "value": "\"bytecode\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3084, - "length": 2, - "value": "11" + "offset": 2796, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 3105, + "offset": 2816, "length": 12, "value": "\"public_key\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3543, + "offset": 3254, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3627, + "offset": 3341, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3719, + "offset": 3425, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3808, + "offset": 3514, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3902, + "offset": 3608, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3997, + "offset": 3698, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 3790, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4179, + "offset": 3875, "length": 1, "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4269, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4356, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4442, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4742, + "offset": 4180, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4875, + "offset": 4297, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5002, + "offset": 4424, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5139, + "offset": 4561, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5278, + "offset": 4690, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5415, + "offset": 4823, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5540, + "offset": 4942, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5669, + "offset": 5063, "length": 1, "value": "8" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 5792, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 6033, - "length": 2, - "value": "11" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6256, + "offset": 5291, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6321, + "offset": 5340, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6380, + "offset": 5399, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6449, + "offset": 5468, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6520, + "offset": 5529, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6589, + "offset": 5594, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6646, + "offset": 5645, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6707, + "offset": 5698, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6762, + "offset": 5759, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6813, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6866, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6927, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6945, + "offset": 5777, "length": 4, "value": "true" }, @@ -391839,6 +388610,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", "kind": "IntegerLiteral", @@ -392791,6 +389583,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", "kind": "IntegerLiteral", @@ -393743,6 +390556,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Common.pb.swift", "kind": "IntegerLiteral", @@ -405149,189 +401983,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -405422,189 +402270,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -405695,189 +402557,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -435458,11616 +432334,10790 @@ }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "Array", - "offset": 5087, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 2748, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 2805, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "Array", - "offset": 11716, + "offset": 9285, "length": 2, "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13393, + "offset": 10388, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "Array", - "offset": 13797, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 10456, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15228, + "offset": 11447, "length": 1, "value": "0" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 11520, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 18808, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15304, + "offset": 22745, "length": 1, "value": "0" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 23714, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15384, + "offset": 29165, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16070, + "offset": 30770, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18563, + "offset": 40646, "length": 19, "value": "\"TW.Polkadot.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18737, + "offset": 40820, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18753, + "offset": 40836, "length": 8, "value": "\"STAKED\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18768, + "offset": 40851, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18784, + "offset": 40867, "length": 7, "value": "\"STASH\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18798, + "offset": 40881, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18814, + "offset": 40897, "length": 12, "value": "\"CONTROLLER\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19037, + "offset": 41120, "length": 6, "value": "\".Era\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19114, + "offset": 41197, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19134, + "offset": 41217, "length": 14, "value": "\"block_number\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19155, + "offset": 41238, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19171, + "offset": 41254, "length": 8, "value": "\"period\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19605, + "offset": 41688, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19693, + "offset": 41776, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19908, + "offset": 41991, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19993, + "offset": 42076, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20024, + "offset": 42107, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20104, + "offset": 42187, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20308, + "offset": 42391, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20355, + "offset": 42438, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20416, + "offset": 42499, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20434, + "offset": 42517, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20651, - "length": 10, - "value": "\".Balance\"" + "offset": 42744, + "length": 20, + "value": "\".CustomCallIndices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20732, + "offset": 42835, "length": 1, - "value": "1" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20748, - "length": 10, - "value": "\"transfer\"" + "offset": 42855, + "length": 14, + "value": "\"module_index\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20765, + "offset": 42876, "length": 1, - "value": "2" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20781, - "length": 15, - "value": "\"batchTransfer\"" + "offset": 42896, + "length": 14, + "value": "\"method_index\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21222, + "offset": 43336, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21310, - "length": 5, - "value": "false" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21387, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 43423, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21676, + "offset": 43642, "length": 1, - "value": "2" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21769, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 43726, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21846, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 43762, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22757, + "offset": 43846, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 22958, - "length": 1, - "value": "2" + "kind": "BooleanLiteral", + "offset": 44078, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23200, + "offset": 44135, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23261, + "offset": 44196, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23279, + "offset": 44214, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23530, - "length": 11, - "value": "\".Transfer\"" + "offset": 44435, + "length": 14, + "value": "\".CallIndices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23612, + "offset": 44520, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23632, - "length": 12, - "value": "\"to_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 23651, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 23667, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24100, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24186, - "length": 1, - "value": "2" + "offset": 44536, + "length": 8, + "value": "\"custom\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24484, + "offset": 44970, "length": 1, "value": "1" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24596, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 24822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 24867, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24928, + "offset": 45059, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24946, + "offset": 45131, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 25202, - "length": 16, - "value": "\".BatchTransfer\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 25289, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 25305, - "length": 11, - "value": "\"transfers\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 25742, - "length": 1, - "value": "1" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26047, + "offset": 45930, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26283, + "offset": 46146, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26344, + "offset": 46207, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26362, + "offset": 46225, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26579, + "offset": 46442, "length": 10, - "value": "\".Staking\"" + "value": "\".Balance\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26660, + "offset": 46523, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26676, - "length": 6, - "value": "\"bond\"" + "offset": 46539, + "length": 10, + "value": "\"transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26689, + "offset": 46556, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26709, - "length": 19, - "value": "\"bond_and_nominate\"" + "offset": 46572, + "length": 15, + "value": "\"batchTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26735, + "offset": 46594, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26755, - "length": 12, - "value": "\"bond_extra\"" + "offset": 46614, + "length": 16, + "value": "\"asset_transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26774, + "offset": 46637, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26790, - "length": 8, - "value": "\"unbond\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26805, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26825, - "length": 19, - "value": "\"withdraw_unbonded\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26851, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26867, - "length": 10, - "value": "\"nominate\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26884, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26900, - "length": 7, - "value": "\"chill\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26914, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26934, - "length": 18, - "value": "\"chill_and_unbond\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26959, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26975, - "length": 8, - "value": "\"rebond\"" + "offset": 46657, + "length": 22, + "value": "\"batch_asset_transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27409, + "offset": 47105, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27493, + "offset": 47193, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27570, + "offset": 47270, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27851, + "offset": 47559, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27946, + "offset": 47652, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28023, + "offset": 47729, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28326, + "offset": 48028, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28415, + "offset": 48121, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28492, + "offset": 48198, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28783, + "offset": 48497, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28869, + "offset": 48595, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28946, + "offset": 48672, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29231, + "offset": 49593, "length": 1, - "value": "5" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 29327, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 49794, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 29404, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 49995, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29709, + "offset": 50206, "length": 1, - "value": "6" + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 50448, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 29797, + "offset": 50509, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 29874, + "offset": 50527, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 30163, - "length": 1, - "value": "7" + "kind": "StringLiteral", + "offset": 50778, + "length": 11, + "value": "\".Transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30248, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 50860, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30325, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 50880, + "length": 12, + "value": "\"to_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30608, + "offset": 50899, "length": 1, - "value": "8" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30702, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 50915, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30779, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 50929, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 31080, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 50945, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 31166, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 50958, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 31243, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 50978, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32132, + "offset": 51418, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32337, + "offset": 51504, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32530, + "offset": 51585, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32717, + "offset": 51666, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32924, + "offset": 52269, "length": 1, - "value": "5" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33115, + "offset": 52381, "length": 1, - "value": "6" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33300, + "offset": 52492, "length": 1, - "value": "7" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33503, + "offset": 52609, "length": 1, - "value": "8" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 33690, - "length": 1, - "value": "9" + "kind": "BooleanLiteral", + "offset": 52839, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 33932, + "offset": 52884, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 33993, + "offset": 52927, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34011, - "length": 4, - "value": "true" + "offset": 52986, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 34258, - "length": 7, - "value": "\".Bond\"" + "kind": "BooleanLiteral", + "offset": 53047, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 34336, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 53065, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34352, - "length": 12, - "value": "\"controller\"" + "offset": 53321, + "length": 16, + "value": "\".BatchTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34371, + "offset": 53408, "length": 1, - "value": "2" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34387, - "length": 7, - "value": "\"value\"" + "offset": 53428, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34401, + "offset": 53449, "length": 1, - "value": "3" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34421, - "length": 20, - "value": "\"reward_destination\"" + "offset": 53465, + "length": 11, + "value": "\"transfers\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34867, + "offset": 53902, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34954, + "offset": 53992, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 35035, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 35346, + "offset": 54588, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 35458, + "offset": 54714, "length": 1, "value": "2" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 35595, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 35815, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35860, + "offset": 54956, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35929, + "offset": 55009, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35990, + "offset": 55070, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 36008, + "offset": 55088, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36266, - "length": 18, - "value": "\".BondAndNominate\"" + "offset": 55344, + "length": 16, + "value": "\".AssetTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36355, + "offset": 55431, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36371, - "length": 12, - "value": "\"controller\"" + "offset": 55451, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36390, + "offset": 55472, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36406, - "length": 7, - "value": "\"value\"" + "offset": 55492, + "length": 12, + "value": "\"to_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36420, + "offset": 55511, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36440, - "length": 20, - "value": "\"reward_destination\"" + "offset": 55527, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36467, + "offset": 55541, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36483, - "length": 12, - "value": "\"nominators\"" + "offset": 55561, + "length": 10, + "value": "\"asset_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 55578, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 55598, + "length": 14, + "value": "\"fee_asset_id\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36921, + "offset": 56038, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37008, + "offset": 56128, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37089, + "offset": 56214, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37181, + "offset": 56295, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37487, + "offset": 56379, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 56975, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37599, + "offset": 57100, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37736, + "offset": 57212, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37859, + "offset": 57244, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57325, "length": 1, "value": "4" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57360, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57444, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 57686, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38101, + "offset": 57739, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38146, + "offset": 57784, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38215, + "offset": 57833, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38270, + "offset": 57888, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38331, + "offset": 57949, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38349, + "offset": 57967, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 38601, - "length": 12, - "value": "\".BondExtra\"" + "offset": 58228, + "length": 21, + "value": "\".BatchAssetTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 38684, + "offset": 58320, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 38700, - "length": 7, - "value": "\"value\"" + "offset": 58340, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 39133, + "offset": 58361, "length": 1, - "value": "1" + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 58381, + "length": 14, + "value": "\"fee_asset_id\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 39422, + "offset": 58402, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39642, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 58418, + "length": 11, + "value": "\"transfers\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39703, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 58855, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39721, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 58945, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 39970, - "length": 9, - "value": "\".Unbond\"" + "kind": "IntegerLiteral", + "offset": 59032, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40050, + "offset": 59628, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 40066, - "length": 7, - "value": "\"value\"" + "kind": "IntegerLiteral", + "offset": 59667, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40499, + "offset": 59751, "length": 1, - "value": "1" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40788, + "offset": 59873, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41002, + "offset": 60125, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 60180, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 60233, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41063, + "offset": 60294, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41081, + "offset": 60312, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 41330, - "length": 9, - "value": "\".Rebond\"" + "offset": 60529, + "length": 10, + "value": "\".Staking\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 41410, + "offset": 60610, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 41426, - "length": 7, - "value": "\"value\"" + "offset": 60626, + "length": 6, + "value": "\"bond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 41859, + "offset": 60639, "length": 1, - "value": "1" + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60659, + "length": 19, + "value": "\"bond_and_nominate\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 42148, + "offset": 60685, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42362, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 60705, + "length": 12, + "value": "\"bond_extra\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42423, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 60724, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42441, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 60740, + "length": 8, + "value": "\"unbond\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 60755, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 42700, + "offset": 60775, "length": 19, - "value": "\".WithdrawUnbonded\"" + "value": "\"withdraw_unbonded\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 42790, + "offset": 60801, "length": 1, - "value": "1" + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 42810, - "length": 16, - "value": "\"slashing_spans\"" + "offset": 60817, + "length": 10, + "value": "\"nominate\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43252, + "offset": 60834, "length": 1, - "value": "1" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60850, + "length": 7, + "value": "\"chill\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43475, + "offset": 60864, "length": 1, - "value": "0" + "value": "8" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60884, + "length": 18, + "value": "\"chill_and_unbond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43561, + "offset": 60909, "length": 1, - "value": "1" + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 43811, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 60925, + "length": 8, + "value": "\"rebond\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 61359, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 43872, + "offset": 61443, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 43890, + "offset": 61520, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 44141, - "length": 11, - "value": "\".Nominate\"" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 44223, + "offset": 61801, "length": 1, - "value": "1" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 44239, - "length": 12, - "value": "\"nominators\"" + "kind": "BooleanLiteral", + "offset": 61896, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 44677, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 61973, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 44983, + "offset": 62276, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45211, + "offset": 62365, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45272, + "offset": 62442, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 62733, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 62819, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45290, + "offset": 62896, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 45547, - "length": 17, - "value": "\".ChillAndUnbond\"" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 45635, + "offset": 63181, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 45651, - "length": 7, - "value": "\"value\"" + "kind": "BooleanLiteral", + "offset": 63277, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 46084, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 63354, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 46373, + "offset": 63659, "length": 1, - "value": "1" + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46603, + "offset": 63747, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46664, + "offset": 63824, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 64113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 64198, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46682, + "offset": 64275, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 46930, - "length": 8, - "value": "\".Chill\"" + "kind": "IntegerLiteral", + "offset": 64558, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 47451, + "offset": 64652, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 47469, + "offset": 64729, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47691, - "length": 15, - "value": "\".SigningInput\"" + "kind": "IntegerLiteral", + "offset": 65030, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 47777, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 65116, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47797, - "length": 12, - "value": "\"block_hash\"" + "kind": "BooleanLiteral", + "offset": 65193, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47816, + "offset": 66082, "length": 1, - "value": "2" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47836, - "length": 14, - "value": "\"genesis_hash\"" + "kind": "IntegerLiteral", + "offset": 66287, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47857, + "offset": 66480, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47873, - "length": 7, - "value": "\"nonce\"" + "kind": "IntegerLiteral", + "offset": 66667, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47887, + "offset": 66874, "length": 1, - "value": "4" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47907, - "length": 14, - "value": "\"spec_version\"" + "kind": "IntegerLiteral", + "offset": 67065, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47928, + "offset": 67250, "length": 1, - "value": "5" + "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47948, - "length": 21, - "value": "\"transaction_version\"" + "kind": "IntegerLiteral", + "offset": 67453, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47976, + "offset": 67640, "length": 1, - "value": "6" + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47992, + "kind": "BooleanLiteral", + "offset": 67882, "length": 5, - "value": "\"tip\"" + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 48004, - "length": 1, - "value": "7" + "kind": "BooleanLiteral", + "offset": 67943, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 67961, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48020, - "length": 5, - "value": "\"era\"" + "offset": 68208, + "length": 7, + "value": "\".Bond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48032, + "offset": 68286, "length": 1, - "value": "8" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48052, - "length": 13, - "value": "\"private_key\"" + "offset": 68302, + "length": 12, + "value": "\"controller\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48072, + "offset": 68321, "length": 1, - "value": "9" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48088, - "length": 9, - "value": "\"network\"" + "offset": 68337, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48104, - "length": 2, - "value": "10" + "offset": 68351, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48125, - "length": 14, - "value": "\"balance_call\"" + "offset": 68371, + "length": 20, + "value": "\"reward_destination\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48146, - "length": 2, - "value": "11" + "offset": 68398, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48167, + "offset": 68418, "length": 14, - "value": "\"staking_call\"" + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48607, + "offset": 68858, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48692, + "offset": 68945, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48779, + "offset": 69026, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48861, + "offset": 69118, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48949, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49044, + "offset": 69723, "length": 1, - "value": "6" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49123, + "offset": 69835, "length": 1, - "value": "7" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49205, + "offset": 69972, "length": 1, - "value": "8" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49291, + "offset": 70089, "length": 1, - "value": "9" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49375, - "length": 2, - "value": "10" + "kind": "BooleanLiteral", + "offset": 70313, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49455, + "offset": 70358, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49532, - "length": 4, - "value": "true" + "offset": 70427, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49827, - "length": 2, - "value": "11" + "kind": "BooleanLiteral", + "offset": 70486, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49907, + "offset": 70547, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49984, + "offset": 70565, "length": 4, "value": "true" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 70823, + "length": 18, + "value": "\".BondAndNominate\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 50791, + "offset": 70912, "length": 1, "value": "1" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 70928, + "length": 12, + "value": "\"controller\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 50915, + "offset": 70947, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 50945, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 70963, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51024, + "offset": 70977, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51060, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 70997, + "length": 20, + "value": "\"reward_destination\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51145, + "offset": 71024, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51188, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 71040, + "length": 12, + "value": "\"nominators\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51280, + "offset": 71059, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51388, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 71079, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51497, + "offset": 71519, "length": 1, - "value": "7" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51623, + "offset": 71606, "length": 1, - "value": "8" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51655, + "offset": 71687, "length": 1, - "value": "0" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51736, + "offset": 71779, "length": 1, - "value": "9" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51962, - "length": 2, - "value": "10" + "offset": 71866, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 52160, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52407, - "length": 5, - "value": "false" + "offset": 72471, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52464, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72583, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52509, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72720, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52566, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72843, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52637, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72960, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52678, + "offset": 73206, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52721, + "offset": 73251, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52776, + "offset": 73320, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52825, + "offset": 73375, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52884, + "offset": 73434, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52945, + "offset": 73495, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52963, + "offset": 73513, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53186, - "length": 16, - "value": "\".SigningOutput\"" + "offset": 73765, + "length": 12, + "value": "\".BondExtra\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53273, + "offset": 73848, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53289, - "length": 9, - "value": "\"encoded\"" + "offset": 73864, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53305, + "offset": 73878, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53321, - "length": 7, - "value": "\"error\"" + "offset": 73898, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53335, + "offset": 74338, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 53355, - "length": 15, - "value": "\"error_message\"" + "kind": "IntegerLiteral", + "offset": 74419, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53796, + "offset": 75013, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53879, + "offset": 75130, "length": 1, "value": "2" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75354, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75474, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75492, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75741, + "length": 9, + "value": "\".Unbond\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53959, + "offset": 75821, "length": 1, - "value": "3" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75837, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 75851, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75871, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54260, + "offset": 76311, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54369, + "offset": 76392, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54496, + "offset": 76986, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 54712, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 77103, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54757, + "offset": 77321, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54816, + "offset": 77380, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54877, + "offset": 77441, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54895, + "offset": 77459, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77708, + "length": 9, + "value": "\".Rebond\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 77788, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77804, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 77818, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77838, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 78278, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 78359, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 78953, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 79070, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 506, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79288, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 527, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79347, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79408, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79685, + "length": 19, + "value": "\".WithdrawUnbonded\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 79775, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79795, + "length": 16, + "value": "\"slashing_spans\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 579, + "offset": 79818, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79838, + "length": 14, + "value": "\"call_indices\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 607, + "offset": 80278, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 628, + "offset": 80367, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 80887, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 80973, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 81090, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 506, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81344, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 527, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81403, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 555, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81464, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 579, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81482, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 607, - "length": 1, - "value": "7" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81733, + "length": 11, + "value": "\".Nominate\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 628, + "offset": 81815, "length": 1, - "value": "8" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81831, + "length": 12, + "value": "\"nominators\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 81850, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81870, + "length": 14, + "value": "\"call_indices\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 82310, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 82397, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 506, + "offset": 83002, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 527, + "offset": 83119, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 555, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83351, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 579, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83410, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 607, - "length": 1, - "value": "7" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83471, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 1, - "value": "8" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83489, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83746, + "length": 17, + "value": "\".ChillAndUnbond\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "offset": 83834, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83850, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 694, - "length": 4, - "value": "1852" + "offset": 83864, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83884, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "offset": 84324, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "offset": 84405, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 694, - "length": 4, - "value": "1852" + "offset": 84999, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "offset": 85116, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85350, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85409, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 694, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85470, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85488, "length": 4, - "value": "1852" + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 2933, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 85736, + "length": 8, + "value": "\".Chill\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 3357, + "offset": 85815, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "Array", - "offset": 6227, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 85835, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 6660, + "offset": 86275, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 6724, + "offset": 86874, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 6797, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87104, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 6924, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87165, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 11762, - "length": 17, - "value": "\"TW.Ripple.Proto\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87183, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 11991, - "length": 17, - "value": "\".CurrencyAmount\"" + "offset": 87401, + "length": 11, + "value": "\".Identity\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12079, + "offset": 87483, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 12095, - "length": 10, - "value": "\"currency\"" + "offset": 87503, + "length": 22, + "value": "\"join_identity_as_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12112, + "offset": 87532, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 12128, - "length": 7, - "value": "\"value\"" + "offset": 87552, + "length": 19, + "value": "\"add_authorization\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12142, + "offset": 87997, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 12158, - "length": 8, - "value": "\"issuer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88095, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 12592, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88172, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12677, + "offset": 88479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 12759, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88576, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 13057, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88653, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13170, + "offset": 89588, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13285, + "offset": 89795, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 13501, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 13546, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13593, + "offset": 90039, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13654, + "offset": 90100, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13672, + "offset": 90118, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 13897, + "offset": 90380, "length": 20, - "value": "\".OperationTrustSet\"" + "value": "\".JoinIdentityAsKey\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13988, + "offset": 90471, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 14008, + "offset": 90491, "length": 14, - "value": "\"limit_amount\"" + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 14448, + "offset": 90512, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 90532, + "length": 9, + "value": "\"auth_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 90967, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15047, + "offset": 91057, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91649, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91764, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15281, + "offset": 92016, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15342, + "offset": 92063, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15360, + "offset": 92124, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 92142, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15584, + "offset": 92403, "length": 19, - "value": "\".OperationPayment\"" + "value": "\".AddAuthorization\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15674, + "offset": 92493, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15690, - "length": 8, - "value": "\"amount\"" + "offset": 92513, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15705, + "offset": 92534, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15725, - "length": 17, - "value": "\"currency_amount\"" + "offset": 92550, + "length": 8, + "value": "\"target\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15749, + "offset": 92565, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15765, - "length": 13, - "value": "\"destination\"" + "offset": 92581, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15785, + "offset": 92594, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15805, - "length": 17, - "value": "\"destination_tag\"" + "offset": 92610, + "length": 8, + "value": "\"expiry\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16248, + "offset": 93044, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16505, + "offset": 93134, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 16589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 16665, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16965, + "offset": 93217, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17053, + "offset": 93300, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17747, + "offset": 93892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17949, + "offset": 94011, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18102, + "offset": 94121, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18141, + "offset": 94156, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18228, + "offset": 94236, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18454, + "offset": 94486, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18511, + "offset": 94533, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18574, + "offset": 94578, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18635, + "offset": 94625, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18653, + "offset": 94686, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 94704, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18881, - "length": 23, - "value": "\".OperationNFTokenBurn\"" + "offset": 94994, + "length": 7, + "value": "\".Data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18975, + "offset": 95072, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18995, - "length": 12, - "value": "\"nftoken_id\"" + "offset": 95088, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19433, + "offset": 95520, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19734, + "offset": 95806, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 19964, + "offset": 96064, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20025, + "offset": 96125, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20043, + "offset": 96143, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20278, - "length": 30, - "value": "\".OperationNFTokenCreateOffer\"" + "offset": 96430, + "length": 11, + "value": "\".AuthData\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20379, + "offset": 96512, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20399, - "length": 12, - "value": "\"nftoken_id\"" + "offset": 96528, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20418, + "offset": 96542, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20434, - "length": 13, - "value": "\"destination\"" + "offset": 96558, + "length": 11, + "value": "\"extrinsic\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20873, + "offset": 96576, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 20958, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 96592, + "length": 11, + "value": "\"portfolio\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21262, + "offset": 97029, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21387, + "offset": 97113, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21631, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21749, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21767, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 22002, - "length": 30, - "value": "\".OperationNFTokenAcceptOffer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 97201, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22103, + "offset": 97792, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 22123, - "length": 12, - "value": "\"sell_offer\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22561, + "offset": 97911, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22862, + "offset": 98030, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23106, + "offset": 98290, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23167, + "offset": 98345, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23185, + "offset": 98400, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 98461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 98479, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23420, - "length": 30, - "value": "\".OperationNFTokenCancelOffer\"" + "offset": 98701, + "length": 15, + "value": "\".PolymeshCall\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23521, + "offset": 98787, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23541, - "length": 14, - "value": "\"token_offers\"" + "offset": 98807, + "length": 15, + "value": "\"identity_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23981, + "offset": 99248, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 99328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 99405, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24288, + "offset": 100232, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24536, + "offset": 100460, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24597, + "offset": 100521, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24615, + "offset": 100539, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24835, + "offset": 100761, "length": 15, "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24921, + "offset": 100847, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24937, - "length": 5, - "value": "\"fee\"" + "offset": 100867, + "length": 12, + "value": "\"block_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24949, + "offset": 100886, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24965, - "length": 10, - "value": "\"sequence\"" + "offset": 100906, + "length": 14, + "value": "\"genesis_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24982, + "offset": 100927, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25002, - "length": 22, - "value": "\"last_ledger_sequence\"" + "offset": 100943, + "length": 7, + "value": "\"nonce\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25031, + "offset": 100957, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25047, - "length": 9, - "value": "\"account\"" + "offset": 100977, + "length": 14, + "value": "\"spec_version\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25063, + "offset": 100998, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25079, - "length": 7, - "value": "\"flags\"" + "offset": 101018, + "length": 21, + "value": "\"transaction_version\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25093, + "offset": 101046, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25113, - "length": 13, - "value": "\"private_key\"" + "offset": 101062, + "length": 5, + "value": "\"tip\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25133, + "offset": 101074, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25153, - "length": 14, - "value": "\"op_trust_set\"" + "offset": 101090, + "length": 5, + "value": "\"era\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25174, + "offset": 101102, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25194, - "length": 12, - "value": "\"op_payment\"" + "offset": 101122, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25213, + "offset": 101142, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25233, - "length": 17, - "value": "\"op_nftoken_burn\"" + "offset": 101158, + "length": 9, + "value": "\"network\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25257, + "offset": 101174, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25278, - "length": 25, - "value": "\"op_nftoken_create_offer\"" + "offset": 101195, + "length": 15, + "value": "\"multi_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25310, + "offset": 101217, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25331, - "length": 25, - "value": "\"op_nftoken_accept_offer\"" + "offset": 101238, + "length": 14, + "value": "\"balance_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25363, + "offset": 101259, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25384, - "length": 25, - "value": "\"op_nftoken_cancel_offer\"" + "offset": 101280, + "length": 14, + "value": "\"staking_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25416, + "offset": 101301, "length": 2, - "value": "15" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25437, - "length": 12, - "value": "\"public_key\"" + "offset": 101322, + "length": 15, + "value": "\"polymesh_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25875, + "offset": 101476, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25954, + "offset": 101509, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26038, + "offset": 101549, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26132, + "offset": 101684, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 101716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26216, + "offset": 103051, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26297, + "offset": 103143, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26383, + "offset": 103237, "length": 1, - "value": "7" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26470, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103326, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26549, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103421, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26844, + "offset": 103523, "length": 1, - "value": "8" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26930, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103609, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27009, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103697, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27302, + "offset": 103790, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27392, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27471, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103881, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27772, + "offset": 103976, "length": 2, - "value": "10" + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27870, + "offset": 104060, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27949, + "offset": 104146, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28264, + "offset": 104464, "length": 2, - "value": "11" + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28362, + "offset": 104548, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28441, + "offset": 104634, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28756, + "offset": 104952, "length": 2, - "value": "12" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28854, + "offset": 105041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28933, + "offset": 105127, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 29248, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29754, + "offset": 106061, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29830, + "offset": 106201, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29863, + "offset": 106240, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29944, + "offset": 106326, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29987, + "offset": 106371, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 30078, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30195, + "offset": 106463, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30225, + "offset": 106515, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30303, + "offset": 106614, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30425, + "offset": 106738, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30653, + "offset": 106857, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30848, + "offset": 106999, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31051, + "offset": 107040, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 107128, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 107174, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31268, + "offset": 107269, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31486, + "offset": 107516, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31704, + "offset": 107727, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31853, + "offset": 107940, "length": 2, - "value": "15" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32056, + "offset": 108453, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32107, + "offset": 108529, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32178, + "offset": 108593, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32227, + "offset": 108669, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32272, + "offset": 108759, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32327, + "offset": 108819, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32390, + "offset": 108879, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32443, + "offset": 108953, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32504, + "offset": 109021, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32522, + "offset": 109099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109199, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109247, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109314, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109332, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32743, + "offset": 109555, "length": 16, "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32830, + "offset": 109642, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32846, + "offset": 109658, "length": 9, "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32862, + "offset": 109674, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32878, + "offset": 109690, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32892, + "offset": 109704, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32912, + "offset": 109724, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33353, + "offset": 110165, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33436, + "offset": 110248, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33516, + "offset": 110328, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33817, + "offset": 110629, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33926, + "offset": 110738, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34053, + "offset": 110865, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34265, + "offset": 111081, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34310, + "offset": 111126, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34369, + "offset": 111185, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34430, + "offset": 111246, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34448, + "offset": 111264, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 1199, + "offset": 421, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 1334, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 2072, + "offset": 452, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 3025, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 475, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 3517, + "offset": 506, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 4027, + "offset": 527, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 4468, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 5794, + "offset": 579, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 5853, + "offset": 607, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 5990, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 6865, + "offset": 421, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 6924, + "offset": 452, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 7054, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 475, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 7527, + "offset": 506, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 8097, + "offset": 527, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 9073, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 18438, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 579, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 18929, - "length": 17, - "value": "\"TW.Solana.Proto\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 607, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19152, - "length": 11, - "value": "\".Transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19234, + "offset": 421, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19250, - "length": 11, - "value": "\"recipient\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 452, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19268, + "offset": 475, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19284, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19298, + "offset": 506, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19314, - "length": 6, - "value": "\"memo\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19327, + "offset": 527, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 12, - "value": "\"references\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19781, + "offset": 579, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19867, + "offset": 607, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19949, + "offset": 628, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20030, - "length": 1, - "value": "4" + "offset": 632, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20334, - "length": 1, - "value": "1" + "offset": 652, + "length": 2, + "value": "49" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20364, - "length": 1, - "value": "0" + "offset": 672, + "length": 2, + "value": "84" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20443, - "length": 1, - "value": "2" + "offset": 694, + "length": 4, + "value": "1852" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20554, + "offset": 632, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 652, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 672, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 694, + "length": 4, + "value": "1852" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 652, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 672, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 694, + "length": 4, + "value": "1852" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 2933, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 20677, + "offset": 3357, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20883, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "Array", + "offset": 6227, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20928, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6660, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20971, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6724, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21026, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6797, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21087, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6924, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21105, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 11762, + "length": 17, + "value": "\"TW.Ripple.Proto\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21326, - "length": 16, - "value": "\".DelegateStake\"" + "offset": 11991, + "length": 17, + "value": "\".CurrencyAmount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21413, + "offset": 12079, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21433, - "length": 18, - "value": "\"validator_pubkey\"" + "offset": 12095, + "length": 10, + "value": "\"currency\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21458, + "offset": 12112, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21474, + "offset": 12128, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21488, + "offset": 12142, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21508, - "length": 15, - "value": "\"stake_account\"" + "offset": 12158, + "length": 8, + "value": "\"issuer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21949, + "offset": 12592, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22041, + "offset": 12677, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22123, + "offset": 12759, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22441, + "offset": 13057, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 22471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22550, + "offset": 13170, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22677, + "offset": 13285, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 22905, + "offset": 13501, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 22950, + "offset": 13546, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23009, + "offset": 13593, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23070, + "offset": 13654, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23088, + "offset": 13672, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 23311, - "length": 18, - "value": "\".DeactivateStake\"" + "offset": 13897, + "length": 20, + "value": "\".OperationTrustSet\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 23400, + "offset": 13988, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 23420, - "length": 15, - "value": "\"stake_account\"" + "offset": 14008, + "length": 14, + "value": "\"limit_amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 23861, + "offset": 14448, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 24173, + "offset": 15047, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24399, + "offset": 15281, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24460, + "offset": 15342, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24478, + "offset": 15360, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 24704, - "length": 21, - "value": "\".DeactivateAllStake\"" + "offset": 15584, + "length": 19, + "value": "\".OperationPayment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 24796, + "offset": 15674, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 24816, - "length": 16, - "value": "\"stake_accounts\"" + "offset": 15690, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 25258, + "offset": 15705, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15725, + "length": 17, + "value": "\"currency_amount\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 25573, + "offset": 15749, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15765, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 15785, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15805, + "length": 17, + "value": "\"destination_tag\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 16248, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 25807, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 16505, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 25868, + "offset": 16589, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 25886, + "offset": 16665, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26107, - "length": 16, - "value": "\".WithdrawStake\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26194, + "offset": 16965, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26214, - "length": 15, - "value": "\"stake_account\"" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26236, + "offset": 17053, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26252, - "length": 7, - "value": "\"value\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26685, + "offset": 17747, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26774, + "offset": 17949, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27079, + "offset": 18102, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27109, + "offset": 18141, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27188, + "offset": 18228, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27410, + "offset": 18454, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27455, + "offset": 18511, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27516, + "offset": 18574, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27534, + "offset": 18635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 18653, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27759, - "length": 20, - "value": "\".StakeAccountValue\"" + "offset": 18881, + "length": 23, + "value": "\".OperationNFTokenBurn\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27850, + "offset": 18975, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27870, - "length": 15, - "value": "\"stake_account\"" + "offset": 18995, + "length": 12, + "value": "\"nftoken_id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27892, + "offset": 19433, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 19734, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 19964, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 20025, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 20043, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27908, - "length": 7, - "value": "\"value\"" + "offset": 20278, + "length": 30, + "value": "\".OperationNFTokenCreateOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28341, + "offset": 20379, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 20399, + "length": 12, + "value": "\"nftoken_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28430, + "offset": 20418, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 20434, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28735, + "offset": 20873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28765, + "offset": 20958, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28844, + "offset": 21262, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 21387, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29074, + "offset": 21631, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29119, + "offset": 21688, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29180, + "offset": 21749, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29198, + "offset": 21767, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 29422, - "length": 19, - "value": "\".WithdrawAllStake\"" + "offset": 22002, + "length": 30, + "value": "\".OperationNFTokenAcceptOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 29512, + "offset": 22103, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 29532, - "length": 16, - "value": "\"stake_accounts\"" + "offset": 22123, + "length": 12, + "value": "\"sell_offer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 29974, + "offset": 22561, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 30291, + "offset": 22862, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30521, + "offset": 23106, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30582, + "offset": 23167, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30600, + "offset": 23185, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 30826, - "length": 21, - "value": "\".CreateTokenAccount\"" + "offset": 23420, + "length": 30, + "value": "\".OperationNFTokenCancelOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 30918, + "offset": 23521, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 30938, + "offset": 23541, "length": 14, - "value": "\"main_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 30959, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 30979, - "length": 20, - "value": "\"token_mint_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31006, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 31026, - "length": 15, - "value": "\"token_address\"" + "value": "\"token_offers\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 31467, + "offset": 23981, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31555, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31648, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 31958, + "offset": 24288, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 32093, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 32220, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 32450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 32517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32576, + "offset": 24536, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32637, + "offset": 24597, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32655, + "offset": 24615, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 32876, - "length": 16, - "value": "\".TokenTransfer\"" + "offset": 24835, + "length": 15, + "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 32963, + "offset": 24921, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 32983, - "length": 20, - "value": "\"token_mint_address\"" + "offset": 24937, + "length": 5, + "value": "\"fee\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33010, + "offset": 24949, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33030, - "length": 22, - "value": "\"sender_token_address\"" + "offset": 24965, + "length": 10, + "value": "\"sequence\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33059, + "offset": 24982, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33079, - "length": 25, - "value": "\"recipient_token_address\"" + "offset": 25002, + "length": 22, + "value": "\"last_ledger_sequence\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33111, + "offset": 25031, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33127, - "length": 8, - "value": "\"amount\"" + "offset": 25047, + "length": 9, + "value": "\"account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33142, + "offset": 25063, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33158, - "length": 10, - "value": "\"decimals\"" + "offset": 25079, + "length": 7, + "value": "\"flags\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33175, + "offset": 25093, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33191, - "length": 6, - "value": "\"memo\"" + "offset": 25113, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33204, + "offset": 25133, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33220, - "length": 12, - "value": "\"references\"" + "offset": 25153, + "length": 14, + "value": "\"op_trust_set\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33658, + "offset": 25174, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 33751, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25194, + "length": 12, + "value": "\"op_payment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33846, + "offset": 25213, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 33944, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25233, + "length": 17, + "value": "\"op_nftoken_burn\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34027, - "length": 1, - "value": "5" + "offset": 25257, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 34112, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25278, + "length": 25, + "value": "\"op_nftoken_create_offer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34193, - "length": 1, - "value": "7" + "offset": 25310, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25331, + "length": 25, + "value": "\"op_nftoken_accept_offer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34511, - "length": 1, - "value": "1" + "offset": 25363, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25384, + "length": 25, + "value": "\"op_nftoken_cancel_offer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34650, - "length": 1, - "value": "2" + "offset": 25416, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25437, + "length": 12, + "value": "\"public_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34795, + "offset": 25875, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34826, + "offset": 25954, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34906, + "offset": 26038, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34939, + "offset": 26132, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35021, + "offset": 26216, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35132, + "offset": 26297, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35255, + "offset": 26383, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35485, + "offset": 26470, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35556, - "length": 5, - "value": "false" + "offset": 26549, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 35633, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 26844, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35680, + "offset": 26930, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" + "offset": 27009, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 27302, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35774, + "offset": 27392, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35829, - "length": 5, - "value": "false" + "offset": 27471, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 27772, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35890, + "offset": 27870, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35908, + "offset": 27949, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36138, - "length": 25, - "value": "\".CreateAndTransferToken\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36234, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36254, - "length": 24, - "value": "\"recipient_main_address\"" + "offset": 28264, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 36285, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28362, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36305, - "length": 20, - "value": "\"token_mint_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28441, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36332, - "length": 1, - "value": "3" + "offset": 28756, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36352, - "length": 25, - "value": "\"recipient_token_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28854, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 36384, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28933, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36404, - "length": 22, - "value": "\"sender_token_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 29248, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36433, + "offset": 29754, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36449, - "length": 8, - "value": "\"amount\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36464, + "offset": 29830, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36480, - "length": 10, - "value": "\"decimals\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36497, + "offset": 29863, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36513, - "length": 6, - "value": "\"memo\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36526, + "offset": 29944, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36542, - "length": 12, - "value": "\"references\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36980, + "offset": 29987, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37077, + "offset": 30078, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37170, + "offset": 30195, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37268, + "offset": 30225, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37363, + "offset": 30303, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37446, + "offset": 30425, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37531, + "offset": 30653, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37612, + "offset": 30848, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 37938, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38073, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38218, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38357, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38468, + "offset": 31051, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38501, - "length": 1, - "value": "0" + "offset": 31268, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38583, - "length": 1, - "value": "6" + "offset": 31486, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38694, - "length": 1, - "value": "7" + "offset": 31704, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38817, - "length": 1, - "value": "8" + "offset": 31853, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39073, + "offset": 32056, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39140, + "offset": 32107, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39217, + "offset": 32178, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39288, + "offset": 32227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39335, + "offset": 32272, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39386, + "offset": 32327, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39429, + "offset": 32390, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39484, + "offset": 32443, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39545, + "offset": 32504, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39563, + "offset": 32522, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39789, - "length": 21, - "value": "\".CreateNonceAccount\"" + "offset": 32743, + "length": 16, + "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39881, + "offset": 32830, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39901, - "length": 15, - "value": "\"nonce_account\"" + "offset": 32846, + "length": 9, + "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39923, + "offset": 32862, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39939, - "length": 6, - "value": "\"rent\"" + "offset": 32878, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39952, + "offset": 32892, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39972, - "length": 27, - "value": "\"nonce_account_private_key\"" + "offset": 32912, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40425, + "offset": 33353, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40514, + "offset": 33436, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40595, + "offset": 33516, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40916, + "offset": 33817, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 40945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 41023, + "offset": 33926, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 41169, + "offset": 34053, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41401, + "offset": 34265, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41444, + "offset": 34310, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41523, + "offset": 34369, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41584, + "offset": 34430, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41602, + "offset": 34448, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41830, - "length": 23, - "value": "\".WithdrawNonceAccount\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 41924, + "offset": 542, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41944, - "length": 15, - "value": "\"nonce_account\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 41966, + "offset": 562, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41982, - "length": 11, - "value": "\"recipient\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42000, + "offset": 542, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 42016, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "kind": "IntegerLiteral", + "offset": 562, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42449, + "offset": 542, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42538, + "offset": 562, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42624, + "offset": 1199, "length": 1, - "value": "3" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 42929, - "length": 1, - "value": "1" + "kind": "Array", + "offset": 1334, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43050, + "offset": 2072, "length": 1, - "value": "2" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 43080, - "length": 1, - "value": "0" + "kind": "Array", + "offset": 3025, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43159, + "offset": 3517, "length": 1, - "value": "3" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43395, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 4027, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43448, - "length": 5, - "value": "false" + "kind": "Array", + "offset": 4468, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43493, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 5794, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43554, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 5853, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43572, - "length": 4, - "value": "true" + "kind": "Array", + "offset": 5990, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 43799, - "length": 22, - "value": "\".AdvanceNonceAccount\"" + "kind": "IntegerLiteral", + "offset": 6865, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43892, + "offset": 6924, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 43912, - "length": 15, - "value": "\"nonce_account\"" + "kind": "Array", + "offset": 7054, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44353, + "offset": 7527, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44665, + "offset": 8097, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44899, + "offset": 9073, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 44960, - "length": 5, - "value": "false" + "kind": "Array", + "offset": 18438, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 44978, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 18929, + "length": 17, + "value": "\"TW.Solana.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45198, - "length": 15, - "value": "\".SigningInput\"" + "offset": 19152, + "length": 11, + "value": "\".Transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45284, + "offset": 19234, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45304, - "length": 13, - "value": "\"private_key\"" + "offset": 19250, + "length": 11, + "value": "\"recipient\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45324, + "offset": 19268, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45344, - "length": 18, - "value": "\"recent_blockhash\"" + "offset": 19284, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45369, + "offset": 19298, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45389, - "length": 8, - "value": "\"v0_msg\"" + "offset": 19314, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45404, + "offset": 19327, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45424, - "length": 22, - "value": "\"transfer_transaction\"" + "offset": 19343, + "length": 12, + "value": "\"references\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45453, + "offset": 19781, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45473, - "length": 28, - "value": "\"delegate_stake_transaction\"" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45508, + "offset": 19867, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45528, - "length": 30, - "value": "\"deactivate_stake_transaction\"" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45565, + "offset": 19949, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45585, - "length": 34, - "value": "\"deactivate_all_stake_transaction\"" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45626, + "offset": 20030, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45646, - "length": 22, - "value": "\"withdraw_transaction\"" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45675, + "offset": 20334, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45695, - "length": 26, - "value": "\"withdraw_all_transaction\"" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45728, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45749, - "length": 34, - "value": "\"create_token_account_transaction\"" + "offset": 20364, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45790, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45811, - "length": 28, - "value": "\"token_transfer_transaction\"" + "offset": 20443, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45846, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45867, - "length": 39, - "value": "\"create_and_transfer_token_transaction\"" + "offset": 20554, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45913, - "length": 2, - "value": "13" + "offset": 20677, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45934, - "length": 22, - "value": "\"create_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 20883, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 45963, - "length": 2, - "value": "16" + "kind": "BooleanLiteral", + "offset": 20928, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45984, - "length": 24, - "value": "\"withdraw_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 20971, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 46015, - "length": 2, - "value": "19" + "kind": "BooleanLiteral", + "offset": 21026, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 46036, - "length": 23, - "value": "\"advance_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 21087, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 46066, - "length": 2, - "value": "14" + "kind": "BooleanLiteral", + "offset": 21105, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46083, - "length": 8, - "value": "\"sender\"" + "offset": 21326, + "length": 16, + "value": "\".DelegateStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46098, - "length": 2, - "value": "15" + "offset": 21413, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46119, - "length": 15, - "value": "\"nonce_account\"" + "offset": 21433, + "length": 18, + "value": "\"validator_pubkey\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46141, - "length": 2, - "value": "17" + "offset": 21458, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46162, - "length": 23, - "value": "\"fee_payer_private_key\"" + "offset": 21474, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46192, - "length": 2, - "value": "18" + "offset": 21488, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46213, - "length": 11, - "value": "\"fee_payer\"" + "offset": 21508, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46650, + "offset": 21949, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46736, + "offset": 22041, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46828, + "offset": 22123, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46908, + "offset": 22441, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 46986, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47066, - "length": 4, - "value": "true" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 47380, + "offset": 22471, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47463, - "length": 5, - "value": "false" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47543, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 22550, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 47867, + "offset": 22677, "length": 1, - "value": "6" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 47952, + "offset": 22905, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48032, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 48360, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 48448, + "offset": 22950, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48528, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 48862, - "length": 1, - "value": "8" + "offset": 23009, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48945, + "offset": 23070, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 49025, + "offset": 23088, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 49339, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49425, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49505, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 23311, + "length": 18, + "value": "\".DeactivateStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 49825, - "length": 2, - "value": "10" + "offset": 23400, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49914, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 23420, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49994, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 23861, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 50328, - "length": 2, - "value": "11" + "offset": 24173, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50412, + "offset": 24399, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 50816, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 50909, + "offset": 24460, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50989, + "offset": 24478, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 51331, - "length": 2, - "value": "13" + "kind": "StringLiteral", + "offset": 24704, + "length": 21, + "value": "\".DeactivateAllStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 51420, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 24796, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 51500, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 24816, + "length": 16, + "value": "\"stake_accounts\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 51812, - "length": 2, - "value": "14" + "offset": 25258, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 51896, - "length": 2, - "value": "15" + "offset": 25573, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 51986, - "length": 2, - "value": "16" + "kind": "BooleanLiteral", + "offset": 25807, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 52077, + "offset": 25868, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 52157, + "offset": 25886, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 52473, - "length": 2, - "value": "17" + "kind": "StringLiteral", + "offset": 26107, + "length": 16, + "value": "\".WithdrawStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 52568, - "length": 2, - "value": "18" + "offset": 26194, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 52654, - "length": 2, - "value": "19" + "kind": "StringLiteral", + "offset": 26214, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 52744, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 26236, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 52824, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 26252, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53652, + "offset": 26685, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53785, + "offset": 26774, "length": 1, "value": "2" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 53815, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53896, + "offset": 27079, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 54144, + "offset": 27109, "length": 1, - "value": "4" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 54370, + "offset": 27188, "length": 1, - "value": "5" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 54600, - "length": 1, - "value": "6" + "kind": "BooleanLiteral", + "offset": 27410, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 54836, - "length": 1, - "value": "7" + "kind": "BooleanLiteral", + "offset": 27455, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55052, - "length": 1, - "value": "8" + "kind": "BooleanLiteral", + "offset": 27516, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55274, - "length": 1, - "value": "9" + "kind": "BooleanLiteral", + "offset": 27534, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55510, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 27759, + "length": 20, + "value": "\".StakeAccountValue\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 55737, - "length": 2, - "value": "11" + "offset": 27850, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55982, - "length": 2, - "value": "12" + "kind": "StringLiteral", + "offset": 27870, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56197, - "length": 2, - "value": "13" + "offset": 27892, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 56340, - "length": 2, - "value": "14" + "kind": "StringLiteral", + "offset": 27908, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56468, - "length": 2, - "value": "15" + "offset": 28341, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56618, - "length": 2, - "value": "16" + "offset": 28430, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56761, - "length": 2, - "value": "17" + "offset": 28735, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56881, - "length": 2, - "value": "18" + "offset": 28765, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 57030, - "length": 2, - "value": "19" + "offset": 28844, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57251, + "offset": 29074, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57316, + "offset": 29119, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57361, + "offset": 29180, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57426, - "length": 5, - "value": "false" + "offset": 29198, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57473, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 29422, + "length": 19, + "value": "\".WithdrawAllStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57532, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 29512, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57603, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 29532, + "length": 16, + "value": "\"stake_accounts\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 29974, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 30291, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57654, + "offset": 30521, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57715, + "offset": 30582, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57733, + "offset": 30600, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 57954, - "length": 16, - "value": "\".SigningOutput\"" + "offset": 30826, + "length": 21, + "value": "\".CreateTokenAccount\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58041, + "offset": 30918, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58057, - "length": 9, - "value": "\"encoded\"" + "offset": 30938, + "length": 14, + "value": "\"main_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58073, + "offset": 30959, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58089, - "length": 7, - "value": "\"error\"" + "offset": 30979, + "length": 20, + "value": "\"token_mint_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58103, + "offset": 31006, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58123, + "offset": 31026, "length": 15, - "value": "\"error_message\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 58145, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 58165, - "length": 13, - "value": "\"unsigned_tx\"" + "value": "\"token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58604, + "offset": 31467, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58688, + "offset": 31555, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58768, + "offset": 31648, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58857, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 59157, + "offset": 31958, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 59266, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 59393, + "offset": 32093, "length": 1, - "value": "3" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 59516, + "offset": 32220, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 59728, - "length": 5, - "value": "false" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59773, + "offset": 32450, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59832, + "offset": 32517, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59887, + "offset": 32576, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59948, + "offset": 32637, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59966, + "offset": 32655, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60190, - "length": 19, - "value": "\".PreSigningOutput\"" + "offset": 32876, + "length": 16, + "value": "\".TokenTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60280, + "offset": 32963, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60296, - "length": 9, - "value": "\"signers\"" + "offset": 32983, + "length": 20, + "value": "\"token_mint_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60312, + "offset": 33010, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60328, - "length": 6, - "value": "\"data\"" + "offset": 33030, + "length": 22, + "value": "\"sender_token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60341, + "offset": 33059, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60357, - "length": 7, - "value": "\"error\"" + "offset": 33079, + "length": 25, + "value": "\"recipient_token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60371, + "offset": 33111, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60391, - "length": 15, - "value": "\"error_message\"" + "offset": 33127, + "length": 8, + "value": "\"amount\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60832, + "offset": 33142, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 60915, - "length": 1, - "value": "2" + "kind": "StringLiteral", + "offset": 33158, + "length": 10, + "value": "\"decimals\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60995, + "offset": 33175, "length": 1, - "value": "3" + "value": "6" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 33191, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61075, + "offset": 33204, "length": 1, - "value": "4" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 33220, + "length": 12, + "value": "\"references\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61376, + "offset": 33658, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61486, + "offset": 33751, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61595, + "offset": 33846, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61722, + "offset": 33944, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 61940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 61983, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62028, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62148, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62166, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 1445, + "offset": 34027, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 2778, + "offset": 34112, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 3693, + "offset": 34193, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 4656, + "offset": 34511, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 6123, + "offset": 34650, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "Array", - "offset": 6208, - "length": 2, - "value": "[]" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 7815, + "offset": 34795, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 8630, + "offset": 34826, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 8687, + "offset": 34906, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 11672, + "offset": 34939, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16146, - "length": 18, - "value": "\"TW.Stellar.Proto\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16315, + "offset": 35021, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16331, - "length": 25, - "value": "\"Predicate_unconditional\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16568, - "length": 8, - "value": "\".Asset\"" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16647, + "offset": 35132, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16663, - "length": 8, - "value": "\"issuer\"" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16678, + "offset": 35255, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16694, - "length": 11, - "value": "\"alphanum4\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35485, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17131, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35556, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17214, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35633, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17511, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35680, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17632, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35731, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17828, + "offset": 35774, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17881, + "offset": 35829, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17942, + "offset": 35890, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17960, + "offset": 35908, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18191, + "offset": 36138, "length": 25, - "value": "\".OperationCreateAccount\"" + "value": "\".CreateAndTransferToken\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18287, + "offset": 36234, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18303, - "length": 13, - "value": "\"destination\"" + "offset": 36254, + "length": 24, + "value": "\"recipient_main_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18323, + "offset": 36285, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18339, - "length": 8, - "value": "\"amount\"" + "offset": 36305, + "length": 20, + "value": "\"token_mint_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18773, + "offset": 36332, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 18861, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 36352, + "length": 25, + "value": "\"recipient_token_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19164, + "offset": 36384, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 19195, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 36404, + "length": 22, + "value": "\"sender_token_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19274, + "offset": 36433, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19561, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19640, - "length": 4, - "value": "true" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 19865, - "length": 19, - "value": "\".OperationPayment\"" + "offset": 36449, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19955, + "offset": 36464, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 19971, - "length": 13, - "value": "\"destination\"" + "offset": 36480, + "length": 10, + "value": "\"decimals\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19991, + "offset": 36497, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 20007, - "length": 7, - "value": "\"asset\"" + "offset": 36513, + "length": 6, + "value": "\"memo\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20021, + "offset": 36526, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 20037, - "length": 8, - "value": "\"amount\"" + "offset": 36542, + "length": 12, + "value": "\"references\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20471, + "offset": 36980, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20559, + "offset": 37077, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20643, + "offset": 37170, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21242, + "offset": 37268, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21353, + "offset": 37363, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21388, + "offset": 37446, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21467, + "offset": 37531, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21695, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21789, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21850, - "length": 5, - "value": "false" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21868, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 37612, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22097, - "length": 23, - "value": "\".OperationChangeTrust\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 37938, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22191, + "offset": 38073, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22207, - "length": 7, - "value": "\"asset\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 38218, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22221, + "offset": 38357, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22241, - "length": 14, - "value": "\"valid_before\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 38388, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22681, + "offset": 38468, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22765, + "offset": 38501, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23355, + "offset": 38583, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23395, + "offset": 38694, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23479, + "offset": 38817, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23705, + "offset": 39073, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23762, + "offset": 39140, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23823, + "offset": 39217, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24058, - "length": 11, - "value": "\".Claimant\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24140, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24156, - "length": 9, - "value": "\"account\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24172, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24188, - "length": 11, - "value": "\"predicate\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24625, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24709, - "length": 1, - "value": "2" + "offset": 39288, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 25006, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 39335, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 25143, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 39386, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25347, + "offset": 39429, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25400, + "offset": 39484, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25461, + "offset": 39545, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25479, + "offset": 39563, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25719, - "length": 34, - "value": "\".OperationCreateClaimableBalance\"" + "offset": 39789, + "length": 21, + "value": "\".CreateNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25824, + "offset": 39881, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25840, - "length": 7, - "value": "\"asset\"" + "offset": 39901, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25854, + "offset": 39923, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25870, - "length": 8, - "value": "\"amount\"" + "offset": 39939, + "length": 6, + "value": "\"rent\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25885, + "offset": 39952, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25901, - "length": 11, - "value": "\"claimants\"" + "offset": 39972, + "length": 27, + "value": "\"nonce_account_private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26338, + "offset": 40425, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26422, + "offset": 40514, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26504, + "offset": 40595, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27094, + "offset": 40916, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27129, + "offset": 40945, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27208, + "offset": 41023, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27330, + "offset": 41169, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27578, + "offset": 41401, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27625, + "offset": 41444, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27678, + "offset": 41523, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27739, + "offset": 41584, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27757, + "offset": 41602, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 27996, - "length": 33, - "value": "\".OperationClaimClaimableBalance\"" + "offset": 41830, + "length": 23, + "value": "\".WithdrawNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 28100, + "offset": 41924, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 28120, - "length": 12, - "value": "\"balance_id\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 28558, - "length": 1, - "value": "1" + "offset": 41944, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 28859, + "offset": 41966, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29172, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 29407, - "length": 11, - "value": "\".MemoVoid\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29937, - "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 30154, + "offset": 41982, "length": 11, - "value": "\".MemoText\"" + "value": "\"recipient\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30236, + "offset": 42000, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 30252, - "length": 6, - "value": "\"text\"" + "offset": 42016, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30684, + "offset": 42449, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30972, + "offset": 42538, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31170, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31249, - "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 31464, - "length": 9, - "value": "\".MemoId\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 42624, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 31544, + "offset": 42929, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 31560, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 31990, + "offset": 43050, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32191, + "offset": 43080, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32266, + "offset": 43159, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32456, + "offset": 43395, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32517, + "offset": 43448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32535, + "offset": 43493, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 43554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 43572, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 32752, - "length": 11, - "value": "\".MemoHash\"" + "offset": 43799, + "length": 22, + "value": "\".AdvanceNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32834, + "offset": 43892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 32850, - "length": 6, - "value": "\"hash\"" + "offset": 43912, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 33282, + "offset": 44353, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 33568, + "offset": 44665, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33766, + "offset": 44899, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33827, + "offset": 44960, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33845, + "offset": 44978, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34066, + "offset": 45198, "length": 15, "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34152, + "offset": 45284, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34168, - "length": 5, - "value": "\"fee\"" + "offset": 45304, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34180, + "offset": 45324, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34196, - "length": 10, - "value": "\"sequence\"" + "offset": 45344, + "length": 18, + "value": "\"recent_blockhash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34213, + "offset": 45369, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34229, - "length": 9, - "value": "\"account\"" + "offset": 45389, + "length": 8, + "value": "\"v0_msg\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34245, + "offset": 45404, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34265, - "length": 13, - "value": "\"private_key\"" + "offset": 45424, + "length": 22, + "value": "\"transfer_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34285, + "offset": 45453, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34301, - "length": 12, - "value": "\"passphrase\"" + "offset": 45473, + "length": 28, + "value": "\"delegate_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34320, + "offset": 45508, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34340, - "length": 19, - "value": "\"op_create_account\"" + "offset": 45528, + "length": 30, + "value": "\"deactivate_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34366, + "offset": 45565, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34386, - "length": 12, - "value": "\"op_payment\"" + "offset": 45585, + "length": 34, + "value": "\"deactivate_all_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34405, + "offset": 45626, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34425, - "length": 17, - "value": "\"op_change_trust\"" + "offset": 45646, + "length": 22, + "value": "\"withdraw_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34449, + "offset": 45675, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 45695, + "length": 26, + "value": "\"withdraw_all_transaction\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 45728, "length": 2, - "value": "14" + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34470, - "length": 29, - "value": "\"op_create_claimable_balance\"" + "offset": 45749, + "length": 34, + "value": "\"create_token_account_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34506, + "offset": 45790, "length": 2, - "value": "15" + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34527, + "offset": 45811, "length": 28, - "value": "\"op_claim_claimable_balance\"" + "value": "\"token_transfer_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34562, - "length": 1, - "value": "9" + "offset": 45846, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34582, - "length": 11, - "value": "\"memo_void\"" + "offset": 45867, + "length": 39, + "value": "\"create_and_transfer_token_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34600, + "offset": 45913, "length": 2, - "value": "10" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34621, - "length": 11, - "value": "\"memo_text\"" + "offset": 45934, + "length": 22, + "value": "\"create_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34639, + "offset": 45963, "length": 2, - "value": "11" + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34660, - "length": 9, - "value": "\"memo_id\"" + "offset": 45984, + "length": 24, + "value": "\"withdraw_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34676, + "offset": 46015, "length": 2, - "value": "12" + "value": "19" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34697, - "length": 11, - "value": "\"memo_hash\"" + "offset": 46036, + "length": 23, + "value": "\"advance_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34715, + "offset": 46066, "length": 2, - "value": "13" + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34736, - "length": 18, - "value": "\"memo_return_hash\"" + "offset": 46083, + "length": 8, + "value": "\"sender\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34761, + "offset": 46098, "length": 2, - "value": "16" + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34782, - "length": 13, - "value": "\"time_bounds\"" + "offset": 46119, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35221, + "offset": 46141, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 46162, + "length": 23, + "value": "\"fee_payer_private_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 46192, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 46213, + "length": 11, + "value": "\"fee_payer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 46650, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35300, + "offset": 46736, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35384, + "offset": 46828, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35468, + "offset": 46908, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 46986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47066, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35554, + "offset": 47380, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47463, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47543, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35641, + "offset": 47867, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 35734, + "offset": 47952, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 35813, + "offset": 48032, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 36118, + "offset": 48360, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36205, + "offset": 48448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36284, + "offset": 48528, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 36577, + "offset": 48862, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36668, + "offset": 48945, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36747, + "offset": 49025, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37048, + "offset": 49339, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37127, + "offset": 49425, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37205, + "offset": 49505, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37495, + "offset": 49825, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37575, + "offset": 49914, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37653, + "offset": 49994, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37943, + "offset": 50328, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38021, + "offset": 50412, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38099, + "offset": 50492, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 38385, + "offset": 50816, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38465, + "offset": 50909, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38543, + "offset": 50989, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 38833, + "offset": 51331, "length": 2, "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38913, + "offset": 51420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38991, + "offset": 51500, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 39293, + "offset": 51812, "length": 2, "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 39396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 39475, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 51896, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 39798, + "offset": 51986, "length": 2, - "value": "15" + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 39900, + "offset": 52077, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 39979, + "offset": 52157, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40300, + "offset": 52473, "length": 2, - "value": "16" + "value": "17" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40807, - "length": 1, - "value": "0" + "offset": 52568, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40883, - "length": 1, - "value": "1" + "offset": 52654, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 52744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 52824, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40916, + "offset": 53652, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40997, + "offset": 53785, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 53815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41114, + "offset": 53896, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41236, + "offset": 54144, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41359, + "offset": 54370, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41597, + "offset": 54600, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41792, + "offset": 54836, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41995, + "offset": 55052, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42244, + "offset": 55274, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42436, + "offset": 55510, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42625, + "offset": 55737, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42818, + "offset": 55982, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43023, + "offset": 56197, "length": 2, "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43308, + "offset": 56340, "length": 2, "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43532, + "offset": 56468, "length": 2, "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43595, - "length": 1, - "value": "0" + "offset": 56618, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43678, + "offset": 56761, "length": 2, - "value": "16" + "value": "17" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 56881, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 57030, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43883, + "offset": 57251, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43934, + "offset": 57316, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43983, + "offset": 57361, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44038, + "offset": 57426, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44093, + "offset": 57473, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44156, + "offset": 57532, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44217, + "offset": 57603, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44272, + "offset": 57654, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44333, + "offset": 57715, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44351, + "offset": 57733, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44573, + "offset": 57954, "length": 16, "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44660, + "offset": 58041, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44676, - "length": 11, - "value": "\"signature\"" + "offset": 58057, + "length": 9, + "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44694, + "offset": 58073, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44710, + "offset": 58089, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44724, + "offset": 58103, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44744, + "offset": 58123, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45185, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45271, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45351, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45657, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45766, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45893, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46156, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 438, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 454, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 472, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 58145, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 58165, + "length": 13, + "value": "\"unsigned_tx\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 58604, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 454, + "offset": 58688, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 472, + "offset": 58768, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 58857, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 59157, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 454, + "offset": 59266, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 472, + "offset": 59393, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 59516, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "StringLiteral", - "offset": 576, - "length": 48, - "value": "\"Public Global Stellar Network ; September 2015\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "StringLiteral", - "offset": 651, - "length": 29, - "value": "\"Kin Mainnet ; December 2018\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59728, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59773, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59832, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 456, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 502, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 456, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59887, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59948, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 502, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59966, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60190, + "length": 19, + "value": "\".PreSigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 60280, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60296, + "length": 9, + "value": "\"signers\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 502, + "offset": 60312, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 491, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60328, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 60341, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 530, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60357, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 60371, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 491, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60391, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 60832, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 530, + "offset": 60915, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 60995, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 491, + "offset": 61075, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 61376, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 530, + "offset": 61486, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 61595, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 1182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 1277, + "offset": 61722, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 4630, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 61940, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 4669, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 61983, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5196, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62028, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5235, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62087, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "Array", - "offset": 5304, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5670, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62166, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5709, + "offset": 1268, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5846, + "offset": 1445, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5885, + "offset": 2778, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6255, + "offset": 3693, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6294, + "offset": 4656, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6333, + "offset": 6123, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "Array", - "offset": 6407, + "offset": 6208, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8224, + "offset": 7815, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8263, + "offset": 8630, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8939, + "offset": 8687, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 13675, + "offset": 11672, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 13714, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 16146, + "length": 18, + "value": "\"TW.Stellar.Proto\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 13749, + "offset": 16315, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20198, - "length": 20, - "value": "\"TW.Substrate.Proto\"" + "offset": 16331, + "length": 25, + "value": "\"Predicate_unconditional\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20422, - "length": 6, - "value": "\".Era\"" + "offset": 16568, + "length": 8, + "value": "\".Asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20499, + "offset": 16647, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20519, - "length": 14, - "value": "\"block_number\"" + "offset": 16663, + "length": 8, + "value": "\"issuer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20540, + "offset": 16678, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20556, - "length": 8, - "value": "\"period\"" + "offset": 16694, + "length": 11, + "value": "\"alphanum4\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20990, + "offset": 17131, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21078, + "offset": 17214, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 21293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21378, + "offset": 17511, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 21409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21489, + "offset": 17632, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21695, + "offset": 17828, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21742, + "offset": 17881, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21803, + "offset": 17942, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21821, + "offset": 17960, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22039, - "length": 10, - "value": "\".Balance\"" + "offset": 18191, + "length": 25, + "value": "\".OperationCreateAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22120, + "offset": 18287, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22136, - "length": 10, - "value": "\"transfer\"" + "offset": 18303, + "length": 13, + "value": "\"destination\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22153, + "offset": 18323, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22173, - "length": 16, - "value": "\"batch_transfer\"" + "offset": 18339, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22196, + "offset": 18773, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 22216, - "length": 16, - "value": "\"asset_transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 18861, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22239, + "offset": 19164, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 22259, - "length": 22, - "value": "\"batch_asset_transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 19195, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22707, + "offset": 19274, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 22796, + "offset": 19514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 22873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 23162, - "length": 1, - "value": "2" + "offset": 19561, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 23256, + "offset": 19622, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 23333, + "offset": 19640, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 19865, + "length": 19, + "value": "\".OperationPayment\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 19955, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 19971, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 23632, + "offset": 19991, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 23726, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 20007, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 23803, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20021, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 20037, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 24102, + "offset": 20471, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 24201, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20559, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 24278, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20643, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25199, + "offset": 21242, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25400, + "offset": 21353, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25601, + "offset": 21388, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25812, + "offset": 21467, "length": 1, - "value": "4" + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 21695, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 21742, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26056, + "offset": 21789, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26117, + "offset": 21850, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26135, + "offset": 21868, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26388, - "length": 11, - "value": "\".Transfer\"" + "offset": 22097, + "length": 23, + "value": "\".OperationChangeTrust\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26470, + "offset": 22191, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26490, - "length": 14, - "value": "\"module_index\"" + "offset": 22207, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26511, + "offset": 22221, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26531, + "offset": 22241, "length": 14, - "value": "\"method_index\"" + "value": "\"valid_before\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26552, + "offset": 22681, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26572, - "length": 12, - "value": "\"to_address\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26591, + "offset": 22765, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26607, - "length": 7, - "value": "\"value\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26621, + "offset": 23355, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26637, - "length": 6, - "value": "\"memo\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27069, + "offset": 23395, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27156, + "offset": 23479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27243, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23705, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27329, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23762, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27410, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23823, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27623, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24058, + "length": 11, + "value": "\".Claimant\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27707, + "offset": 24140, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27743, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24156, + "length": 9, + "value": "\"account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27827, + "offset": 24172, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27948, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24188, + "length": 11, + "value": "\"predicate\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 28060, + "offset": 24625, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 28171, + "offset": 24709, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28403, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28460, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 25006, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28513, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 25143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28558, + "offset": 25347, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28601, + "offset": 25400, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28662, + "offset": 25461, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28680, + "offset": 25479, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 28938, - "length": 16, - "value": "\".BatchTransfer\"" + "offset": 25719, + "length": 34, + "value": "\".OperationCreateClaimableBalance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29025, + "offset": 25824, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29045, - "length": 14, - "value": "\"module_index\"" + "offset": 25840, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29066, + "offset": 25854, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29086, - "length": 14, - "value": "\"method_index\"" + "offset": 25870, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29107, + "offset": 25885, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29123, + "offset": 25901, "length": 11, - "value": "\"transfers\"" + "value": "\"claimants\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29560, + "offset": 26338, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29647, + "offset": 26422, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29734, + "offset": 26504, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 29953, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30037, + "offset": 27094, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30073, + "offset": 27129, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30157, + "offset": 27208, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30279, + "offset": 27330, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30521, + "offset": 27578, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30578, + "offset": 27625, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30631, + "offset": 27678, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30692, + "offset": 27739, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30710, + "offset": 27757, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 30968, - "length": 16, - "value": "\".AssetTransfer\"" + "offset": 27996, + "length": 33, + "value": "\".OperationClaimClaimableBalance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31055, + "offset": 28100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31075, - "length": 14, - "value": "\"module_index\"" + "offset": 28120, + "length": 12, + "value": "\"balance_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 28558, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31096, + "offset": 28859, "length": 1, - "value": "2" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29111, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29190, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31116, - "length": 14, - "value": "\"method_index\"" + "offset": 29407, + "length": 11, + "value": "\".MemoVoid\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 31137, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29937, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31157, - "length": 12, - "value": "\"to_address\"" + "offset": 30154, + "length": 11, + "value": "\".MemoText\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31176, + "offset": 30236, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31192, - "length": 7, - "value": "\"value\"" + "offset": 30252, + "length": 6, + "value": "\"text\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31206, + "offset": 30684, "length": 1, - "value": "5" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 30972, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31170, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31231, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31249, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31226, - "length": 10, - "value": "\"asset_id\"" + "offset": 31464, + "length": 9, + "value": "\".MemoId\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31243, + "offset": 31544, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31263, - "length": 14, - "value": "\"fee_asset_id\"" + "offset": 31560, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31703, + "offset": 31990, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31790, + "offset": 32191, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31877, + "offset": 32266, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 31963, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32456, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 32044, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32535, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 32752, + "length": 11, + "value": "\".MemoHash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32128, + "offset": 32834, "length": 1, - "value": "6" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 32850, + "length": 6, + "value": "\"hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32347, + "offset": 33282, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32431, + "offset": 33568, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33766, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33827, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34066, + "length": 15, + "value": "\".SigningInput\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32467, + "offset": 34152, "length": 1, - "value": "0" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34168, + "length": 5, + "value": "\"fee\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32551, + "offset": 34180, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34196, + "length": 10, + "value": "\"sequence\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32672, + "offset": 34213, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34229, + "length": 9, + "value": "\"account\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32784, + "offset": 34245, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34265, + "length": 13, + "value": "\"private_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32816, + "offset": 34285, "length": 1, - "value": "0" + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34301, + "length": 12, + "value": "\"passphrase\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32897, + "offset": 34320, "length": 1, - "value": "5" + "value": "6" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34340, + "length": 19, + "value": "\"op_create_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32932, + "offset": 34366, "length": 1, - "value": "0" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34386, + "length": 12, + "value": "\"op_payment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33016, + "offset": 34405, "length": 1, - "value": "6" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33258, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34425, + "length": 17, + "value": "\"op_change_trust\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33315, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34449, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33368, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34470, + "length": 29, + "value": "\"op_create_claimable_balance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33413, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34506, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33462, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34527, + "length": 28, + "value": "\"op_claim_claimable_balance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33517, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34562, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33578, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34582, + "length": 11, + "value": "\"memo_void\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33596, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34600, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 33859, - "length": 21, - "value": "\".BatchAssetTransfer\"" + "offset": 34621, + "length": 11, + "value": "\"memo_text\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33951, - "length": 1, - "value": "1" + "offset": 34639, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 33971, - "length": 14, - "value": "\"module_index\"" + "offset": 34660, + "length": 9, + "value": "\"memo_id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33992, - "length": 1, - "value": "2" + "offset": 34676, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34012, - "length": 14, - "value": "\"method_index\"" + "offset": 34697, + "length": 11, + "value": "\"memo_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34033, - "length": 1, - "value": "3" + "offset": 34715, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34053, - "length": 14, - "value": "\"fee_asset_id\"" + "offset": 34736, + "length": 18, + "value": "\"memo_return_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34074, - "length": 1, - "value": "4" + "offset": 34761, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34090, - "length": 11, - "value": "\"transfers\"" + "offset": 34782, + "length": 13, + "value": "\"time_bounds\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34527, + "offset": 35221, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34614, + "offset": 35300, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34701, + "offset": 35384, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34788, + "offset": 35468, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35007, + "offset": 35554, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35091, + "offset": 35641, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35127, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 35734, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35211, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 35813, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35246, + "offset": 36118, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35330, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 36205, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 36284, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35452, + "offset": 36577, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35704, + "offset": 36668, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35761, - "length": 5, - "value": "false" + "offset": 36747, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37048, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35816, + "offset": 37127, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35869, - "length": 5, - "value": "false" + "offset": 37205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37495, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35930, + "offset": 37575, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35948, + "offset": 37653, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 36172, - "length": 16, - "value": "\".Authorization\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37943, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 36259, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38021, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 36279, - "length": 15, - "value": "\"join_identity\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38099, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 36720, - "length": 1, - "value": "1" + "offset": 38385, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 36819, + "offset": 38465, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 36896, + "offset": 38543, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 37723, - "length": 1, - "value": "1" + "offset": 38833, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 37955, + "offset": 38913, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38991, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 39293, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 38016, + "offset": 39396, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 38034, + "offset": 39475, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38303, - "length": 15, - "value": "\".JoinIdentity\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38389, - "length": 1, - "value": "1" + "offset": 39798, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38409, - "length": 14, - "value": "\"module_index\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 39900, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 38430, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 39979, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38450, - "length": 14, - "value": "\"method_index\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40300, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38471, + "offset": 40807, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38487, - "length": 8, - "value": "\"target\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40883, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38502, + "offset": 40916, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38518, - "length": 6, - "value": "\"data\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40997, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38531, + "offset": 41114, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38547, - "length": 8, - "value": "\"expiry\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 41236, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38981, + "offset": 41359, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39068, + "offset": 41597, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39155, + "offset": 41792, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39238, + "offset": 41995, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39321, + "offset": 42244, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39832, - "length": 1, - "value": "0" + "offset": 42436, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39916, - "length": 1, - "value": "1" + "offset": 42625, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39952, - "length": 1, - "value": "0" + "offset": 42818, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40036, - "length": 1, - "value": "2" + "offset": 43023, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40151, - "length": 1, - "value": "3" + "offset": 43308, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40261, - "length": 1, - "value": "4" + "offset": 43532, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40296, + "offset": 43595, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40376, - "length": 1, - "value": "5" + "offset": 43678, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40628, + "offset": 43883, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40685, + "offset": 43934, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40732, + "offset": 43983, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40777, + "offset": 44038, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40824, + "offset": 44093, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40885, + "offset": 44156, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40903, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 41197, - "length": 7, - "value": "\".Data\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 41275, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 41291, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 41723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 42009, - "length": 1, - "value": "1" + "offset": 44217, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42271, + "offset": 44272, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42332, + "offset": 44333, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42350, + "offset": 44351, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42641, - "length": 11, - "value": "\".AuthData\"" + "offset": 44573, + "length": 16, + "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42723, + "offset": 44660, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42739, - "length": 7, - "value": "\"asset\"" + "offset": 44676, + "length": 11, + "value": "\"signature\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42753, + "offset": 44694, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42769, - "length": 11, - "value": "\"extrinsic\"" + "offset": 44710, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42787, + "offset": 44724, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42803, - "length": 11, - "value": "\"portfolio\"" + "offset": 44744, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43240, + "offset": 45185, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43324, + "offset": 45271, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43412, + "offset": 45351, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44003, + "offset": 45657, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44122, + "offset": 45766, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44241, + "offset": 45893, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44505, + "offset": 46111, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44560, + "offset": 46156, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44615, + "offset": 46215, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44676, + "offset": 46276, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44694, + "offset": 46294, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 44913, - "length": 11, - "value": "\".Identity\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 44995, + "offset": 420, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 45015, - "length": 22, - "value": "\"join_identity_as_key\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 45463, + "offset": 438, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 45562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 45639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 46481, + "offset": 454, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46703, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46764, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46782, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47046, - "length": 20, - "value": "\".JoinIdentityAsKey\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47137, + "offset": 472, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47157, - "length": 14, - "value": "\"module_index\"" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47178, + "offset": 494, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47198, - "length": 14, - "value": "\"method_index\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47219, + "offset": 420, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47239, - "length": 9, - "value": "\"auth_id\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47674, + "offset": 438, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47761, + "offset": 454, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47848, + "offset": 472, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 48063, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48147, + "offset": 494, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48183, + "offset": 420, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48267, + "offset": 438, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48298, + "offset": 454, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48378, + "offset": 472, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48630, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48734, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48795, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48813, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49036, - "length": 15, - "value": "\".PolymeshCall\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 49122, + "offset": 494, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49142, - "length": 20, - "value": "\"authorization_call\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 49169, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49189, - "length": 15, - "value": "\"identity_call\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 49630, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 49716, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 48, + "value": "\"Public Global Stellar Network ; September 2015\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 49793, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 29, + "value": "\"Kin Mainnet ; December 2018\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 50100, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 50181, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 50258, - "length": 4, - "value": "true" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 51185, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 51384, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51638, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51717, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 51940, - "length": 15, - "value": "\".SigningInput\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 52026, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52046, - "length": 12, - "value": "\"block_hash\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 52065, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52085, - "length": 14, - "value": "\"genesis_hash\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 52106, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52122, - "length": 7, - "value": "\"nonce\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52136, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52156, - "length": 14, - "value": "\"spec_version\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52177, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52197, - "length": 21, - "value": "\"transaction_version\"" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52241, - "length": 5, - "value": "\"tip\"" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52253, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52269, + "offset": 513, "length": 5, - "value": "\"era\"" + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52281, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52301, - "length": 13, - "value": "\"private_key\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52321, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52337, - "length": 9, - "value": "\"network\"" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52353, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52374, - "length": 14, - "value": "\"balance_call\"" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52395, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52416, - "length": 15, - "value": "\"multi_address\"" + "offset": 513, + "length": 5, + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52438, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52459, - "length": 15, - "value": "\"polymesh_call\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52613, - "length": 1, - "value": "0" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52646, - "length": 1, - "value": "0" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52686, - "length": 1, - "value": "0" + "offset": 513, + "length": 5, + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 52821, + "offset": 433, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 52928, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54294, + "offset": 456, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54386, + "offset": 479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54480, + "offset": 502, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 54569, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54664, + "offset": 433, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54766, + "offset": 456, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54852, + "offset": 479, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54940, + "offset": 502, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 55033, + "offset": 433, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55123, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 55208, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 55294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55612, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55707, - "length": 2, - "value": "12" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56419, + "offset": 456, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56559, + "offset": 479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 56598, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56684, + "offset": 502, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56729, + "offset": 491, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56821, + "offset": 512, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56873, + "offset": 530, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56972, + "offset": 552, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57096, + "offset": 491, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57215, + "offset": 512, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57357, + "offset": 530, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57398, + "offset": 552, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57485, + "offset": 491, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57633, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 57684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57779, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57908, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58395, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58471, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58535, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58701, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58761, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58821, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58895, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58963, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59041, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59119, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59197, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59219, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59267, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59334, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59352, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 59576, - "length": 16, - "value": "\".SigningOutput\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 59663, + "offset": 512, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 59679, - "length": 9, - "value": "\"encoded\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 60114, + "offset": 530, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 60409, + "offset": 552, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60706, - "length": 4, - "value": "true" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Sui.pb.swift", diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 92af543..5f5df31 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name WalletCore // swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @@ -694,15 +694,12 @@ public struct AsnParser { } public typealias BarzContractAddressInput = WalletCore.TW_Barz_Proto_ContractAddressInput public struct TW_Barz_Proto_ContractAddressInput { + public var entryPoint: Swift.String public var factory: Swift.String - public var diamondCutFacet: Swift.String public var accountFacet: Swift.String public var verificationFacet: Swift.String - public var tokenReceiverFacet: Swift.String - public var diamondLoupeFacet: Swift.String - public var diamondInit: Swift.String public var facetRegistry: Swift.String - public var entryPoint: Swift.String + public var defaultFallback: Swift.String public var bytecode: Swift.String public var publicKey: Swift.String public var unknownFields: SwiftProtobuf.UnknownStorage @@ -2154,6 +2151,7 @@ public struct Cardano { public static func minAdaAmount(tokenBundle: Foundation.Data) -> Swift.UInt64 public static func outputMinAdaAmount(toAddress: Swift.String, tokenBundle: Foundation.Data, coinsPerUtxoByte: Swift.String) -> Swift.String? public static func getStakingAddress(baseAddress: Swift.String) -> Swift.String + public static func getByronAddress(publicKey: WalletCore.PublicKey) -> Swift.String } extension WalletCore.CoinType { public func address(string: Swift.String) -> WalletCore.AnyAddress? @@ -2342,6 +2340,9 @@ public enum CoinType : Swift.UInt32, Swift.CaseIterable { case rootstock case thetaFuel case confluxeSpace + case acala + case acalaEVM + case opBNBtestnet public init?(rawValue: Swift.UInt32) public typealias AllCases = [WalletCore.CoinType] public typealias RawValue = Swift.UInt32 @@ -3950,6 +3951,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case okc case thundertoken case cfxevm + case opbnb case gochain case meter case celo @@ -3964,6 +3966,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case kcc case zksync case heco + case acalaevm case metis case polygonzkevm case moonbeam @@ -7764,8 +7767,12 @@ public struct PBKDF2 { public static func hmacSha512(password: Foundation.Data, salt: Foundation.Data, iterations: Swift.UInt32, dkLen: Swift.UInt32) -> Foundation.Data? } public typealias PolkadotEra = WalletCore.TW_Polkadot_Proto_Era +public typealias PolkadotCustomCallIndices = WalletCore.TW_Polkadot_Proto_CustomCallIndices +public typealias PolkadotCallIndices = WalletCore.TW_Polkadot_Proto_CallIndices public typealias PolkadotBalance = WalletCore.TW_Polkadot_Proto_Balance public typealias PolkadotStaking = WalletCore.TW_Polkadot_Proto_Staking +public typealias PolkadotIdentity = WalletCore.TW_Polkadot_Proto_Identity +public typealias PolkadotPolymeshCall = WalletCore.TW_Polkadot_Proto_PolymeshCall public typealias PolkadotSigningInput = WalletCore.TW_Polkadot_Proto_SigningInput public typealias PolkadotSigningOutput = WalletCore.TW_Polkadot_Proto_SigningOutput public typealias PolkadotRewardDestination = WalletCore.TW_Polkadot_Proto_RewardDestination @@ -7791,6 +7798,25 @@ public struct TW_Polkadot_Proto_Era { public var unknownFields: SwiftProtobuf.UnknownStorage public init() } +public struct TW_Polkadot_Proto_CustomCallIndices { + public var moduleIndex: Swift.Int32 + public var methodIndex: Swift.Int32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() +} +public struct TW_Polkadot_Proto_CallIndices { + public var variant: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant? + public var custom: WalletCore.TW_Polkadot_Proto_CustomCallIndices { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_Variant : Swift.Equatable { + case custom(WalletCore.TW_Polkadot_Proto_CustomCallIndices) + public static func == (a: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant, b: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_Balance { public var messageOneof: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof? public var transfer: WalletCore.TW_Polkadot_Proto_Balance.Transfer { @@ -7801,23 +7827,80 @@ public struct TW_Polkadot_Proto_Balance { get set } + public var assetTransfer: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer { + get + set + } + public var batchAssetTransfer: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case transfer(WalletCore.TW_Polkadot_Proto_Balance.Transfer) case batchTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) + case assetTransfer(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) + case batchAssetTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) public static func == (a: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool } public struct Transfer { public var toAddress: Swift.String public var value: Foundation.Data + public var memo: Swift.String + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BatchTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.Transfer] public var unknownFields: SwiftProtobuf.UnknownStorage public init() } + public struct AssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var toAddress: Swift.String + public var value: Foundation.Data + public var assetID: Swift.UInt32 + public var feeAssetID: Swift.UInt32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct BatchAssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var feeAssetID: Swift.UInt32 + public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer] + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public struct TW_Polkadot_Proto_Staking { @@ -7875,6 +7958,14 @@ public struct TW_Polkadot_Proto_Staking { public var controller: Swift.String public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } @@ -7883,52 +7974,233 @@ public struct TW_Polkadot_Proto_Staking { public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BondExtra { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Unbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Rebond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct WithdrawUnbonded { public var slashingSpans: Swift.Int32 + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Nominate { public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct ChillAndUnbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Chill { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public init() +} +public struct TW_Polkadot_Proto_Identity { + public var messageOneof: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof? + public var joinIdentityAsKey: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey { + get + set + } + public var addAuthorization: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case joinIdentityAsKey(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) + case addAuthorization(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) + public static func == (a: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool + } + public struct JoinIdentityAsKey { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var authID: Swift.UInt64 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AddAuthorization { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var target: Swift.String + public var data: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData { + get + set + } + public var hasData: Swift.Bool { + get + } + public mutating func clearData() + public var expiry: Swift.UInt64 public var unknownFields: SwiftProtobuf.UnknownStorage + public struct DataMessage { + public var data: Foundation.Data + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AuthData { + public var asset: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasAsset: Swift.Bool { + get + } + public mutating func clearAsset() + public var extrinsic: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasExtrinsic: Swift.Bool { + get + } + public mutating func clearExtrinsic() + public var portfolio: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasPortfolio: Swift.Bool { + get + } + public mutating func clearPortfolio() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public init() } +public struct TW_Polkadot_Proto_PolymeshCall { + public var messageOneof: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof? + public var identityCall: WalletCore.TW_Polkadot_Proto_Identity { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case identityCall(WalletCore.TW_Polkadot_Proto_Identity) + public static func == (a: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_SigningInput { - public var blockHash: Foundation.Data - public var genesisHash: Foundation.Data - public var nonce: Swift.UInt64 - public var specVersion: Swift.UInt32 - public var transactionVersion: Swift.UInt32 - public var tip: Foundation.Data + public var blockHash: Foundation.Data { + get + set + } + public var genesisHash: Foundation.Data { + get + set + } + public var nonce: Swift.UInt64 { + get + set + } + public var specVersion: Swift.UInt32 { + get + set + } + public var transactionVersion: Swift.UInt32 { + get + set + } + public var tip: Foundation.Data { + get + set + } public var era: WalletCore.TW_Polkadot_Proto_Era { get set @@ -7937,9 +8209,22 @@ public struct TW_Polkadot_Proto_SigningInput { get } public mutating func clearEra() - public var privateKey: Foundation.Data - public var network: Swift.UInt32 - public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? + public var privateKey: Foundation.Data { + get + set + } + public var network: Swift.UInt32 { + get + set + } + public var multiAddress: Swift.Bool { + get + set + } + public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? { + get + set + } public var balanceCall: WalletCore.TW_Polkadot_Proto_Balance { get set @@ -7948,10 +8233,15 @@ public struct TW_Polkadot_Proto_SigningInput { get set } + public var polymeshCall: WalletCore.TW_Polkadot_Proto_PolymeshCall { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case balanceCall(WalletCore.TW_Polkadot_Proto_Balance) case stakingCall(WalletCore.TW_Polkadot_Proto_Staking) + case polymeshCall(WalletCore.TW_Polkadot_Proto_PolymeshCall) public static func == (a: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool } public init() @@ -7976,6 +8266,26 @@ extension WalletCore.TW_Polkadot_Proto_Era : SwiftProtobuf.Message, SwiftProtobu get } } +extension WalletCore.TW_Polkadot_Proto_CustomCallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices, rhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_CallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CallIndices, rhs: WalletCore.TW_Polkadot_Proto_CallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8006,6 +8316,26 @@ extension WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer : SwiftProtobuf.Mes get } } +extension WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Staking : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8106,28 +8436,88 @@ extension WalletCore.TW_Polkadot_Proto_Staking.Chill : SwiftProtobuf.Message, Sw get } } -extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity, rhs: WalletCore.TW_Polkadot_Proto_Identity) -> Swift.Bool public var hashValue: Swift.Int { get } } -extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool public var hashValue: Swift.Int { get } } -@_hasMissingDesignatedInitializers final public class PrivateKey { - public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_PolymeshCall, rhs: WalletCore.TW_Polkadot_Proto_PolymeshCall) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers final public class PrivateKey { + public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool final public var data: Foundation.Data { get } @@ -9296,419 +9686,6 @@ public enum StoredKeyEncryptionLevel : Swift.UInt32, Swift.CaseIterable { get } } -public typealias SubstrateEra = WalletCore.TW_Substrate_Proto_Era -public typealias SubstrateBalance = WalletCore.TW_Substrate_Proto_Balance -public typealias SubstrateAuthorization = WalletCore.TW_Substrate_Proto_Authorization -public typealias SubstrateIdentity = WalletCore.TW_Substrate_Proto_Identity -public typealias SubstratePolymeshCall = WalletCore.TW_Substrate_Proto_PolymeshCall -public typealias SubstrateSigningInput = WalletCore.TW_Substrate_Proto_SigningInput -public typealias SubstrateSigningOutput = WalletCore.TW_Substrate_Proto_SigningOutput -public struct TW_Substrate_Proto_Era { - public var blockNumber: Swift.UInt64 - public var period: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -public struct TW_Substrate_Proto_Balance { - public var messageOneof: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof? - public var transfer: WalletCore.TW_Substrate_Proto_Balance.Transfer { - get - set - } - public var batchTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer { - get - set - } - public var assetTransfer: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer { - get - set - } - public var batchAssetTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case transfer(WalletCore.TW_Substrate_Proto_Balance.Transfer) - case batchTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) - case assetTransfer(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) - case batchAssetTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) - public static func == (a: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool - } - public struct Transfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var memo: Swift.String - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.Transfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var assetID: Swift.UInt32 - public var feeAssetID: Swift.UInt32 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchAssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var feeAssetID: Swift.UInt32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.AssetTransfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_Authorization { - public var messageOneof: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof? - public var joinIdentity: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentity(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) - public static func == (a: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentity { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var target: Swift.String - public var data: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData { - get - set - } - public var hasData: Swift.Bool { - get - } - public mutating func clearData() - public var expiry: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public struct DataMessage { - public var data: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AuthData { - public var asset: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasAsset: Swift.Bool { - get - } - public mutating func clearAsset() - public var extrinsic: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasExtrinsic: Swift.Bool { - get - } - public mutating func clearExtrinsic() - public var portfolio: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasPortfolio: Swift.Bool { - get - } - public mutating func clearPortfolio() - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() - } - public init() -} -public struct TW_Substrate_Proto_Identity { - public var messageOneof: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof? - public var joinIdentityAsKey: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentityAsKey(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) - public static func == (a: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentityAsKey { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var authID: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_PolymeshCall { - public var messageOneof: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof? - public var authorizationCall: WalletCore.TW_Substrate_Proto_Authorization { - get - set - } - public var identityCall: WalletCore.TW_Substrate_Proto_Identity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case authorizationCall(WalletCore.TW_Substrate_Proto_Authorization) - case identityCall(WalletCore.TW_Substrate_Proto_Identity) - public static func == (a: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningInput { - public var blockHash: Foundation.Data { - get - set - } - public var genesisHash: Foundation.Data { - get - set - } - public var nonce: Swift.UInt64 { - get - set - } - public var specVersion: Swift.UInt32 { - get - set - } - public var transactionVersion: Swift.UInt32 { - get - set - } - public var tip: Foundation.Data { - get - set - } - public var era: WalletCore.TW_Substrate_Proto_Era { - get - set - } - public var hasEra: Swift.Bool { - get - } - public mutating func clearEra() - public var privateKey: Foundation.Data { - get - set - } - public var network: Swift.Int32 { - get - set - } - public var messageOneof: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof? { - get - set - } - public var balanceCall: WalletCore.TW_Substrate_Proto_Balance { - get - set - } - public var multiAddress: Swift.Bool { - get - set - } - public var polymeshCall: WalletCore.TW_Substrate_Proto_PolymeshCall { - get - set - } - public var hasPolymeshCall: Swift.Bool { - get - } - public mutating func clearPolymeshCall() - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case balanceCall(WalletCore.TW_Substrate_Proto_Balance) - public static func == (a: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningOutput { - public var encoded: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -extension WalletCore.TW_Substrate_Proto_Era : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Era, rhs: WalletCore.TW_Substrate_Proto_Era) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance, rhs: WalletCore.TW_Substrate_Proto_Balance) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.Transfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.Transfer, rhs: WalletCore.TW_Substrate_Proto_Balance.Transfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization, rhs: WalletCore.TW_Substrate_Proto_Authorization) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity, rhs: WalletCore.TW_Substrate_Proto_Identity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_PolymeshCall, rhs: WalletCore.TW_Substrate_Proto_PolymeshCall) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningInput, rhs: WalletCore.TW_Substrate_Proto_SigningInput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningOutput, rhs: WalletCore.TW_Substrate_Proto_SigningOutput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers final public class SubstrateAddress : WalletCore.Address { - public static func == (lhs: WalletCore.SubstrateAddress, rhs: WalletCore.SubstrateAddress) -> Swift.Bool - public static func isValidString(string: Swift.String, network: Swift.Int32) -> Swift.Bool - final public var description: Swift.String { - get - } - public init?(string: Swift.String, network: Swift.Int32) - public init(publicKey: WalletCore.PublicKey, network: Swift.Int32) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class SubstrateSigner { - public static func message(data: Foundation.Data) -> Foundation.Data - public static func transaction(data: Foundation.Data, publicKey: Foundation.Data, signature: Foundation.Data) -> Foundation.Data - @objc deinit -} public typealias SuiSignDirect = WalletCore.TW_Sui_Proto_SignDirect public typealias SuiSigningInput = WalletCore.TW_Sui_Proto_SigningInput public typealias SuiSigningOutput = WalletCore.TW_Sui_Proto_SigningOutput @@ -11140,6 +11117,8 @@ extension WalletCore.TW_Waves_Proto_SigningOutput : SwiftProtobuf.Message, Swift } public struct WebAuthn { public static func getPublicKey(attestationObject: Foundation.Data) -> WalletCore.PublicKey? + public static func getRSValues(signature: Foundation.Data) -> Foundation.Data + public static func reconstructOriginalMessage(authenticatorData: Foundation.Data, clientDataJSON: Foundation.Data) -> Foundation.Data } public typealias ZilliqaTransaction = WalletCore.TW_Zilliqa_Proto_Transaction public typealias ZilliqaSigningInput = WalletCore.TW_Zilliqa_Proto_SigningInput diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 83c6aa5..3b9a01f 100644 Binary files a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 92af543..5f5df31 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name WalletCore // swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @@ -694,15 +694,12 @@ public struct AsnParser { } public typealias BarzContractAddressInput = WalletCore.TW_Barz_Proto_ContractAddressInput public struct TW_Barz_Proto_ContractAddressInput { + public var entryPoint: Swift.String public var factory: Swift.String - public var diamondCutFacet: Swift.String public var accountFacet: Swift.String public var verificationFacet: Swift.String - public var tokenReceiverFacet: Swift.String - public var diamondLoupeFacet: Swift.String - public var diamondInit: Swift.String public var facetRegistry: Swift.String - public var entryPoint: Swift.String + public var defaultFallback: Swift.String public var bytecode: Swift.String public var publicKey: Swift.String public var unknownFields: SwiftProtobuf.UnknownStorage @@ -2154,6 +2151,7 @@ public struct Cardano { public static func minAdaAmount(tokenBundle: Foundation.Data) -> Swift.UInt64 public static func outputMinAdaAmount(toAddress: Swift.String, tokenBundle: Foundation.Data, coinsPerUtxoByte: Swift.String) -> Swift.String? public static func getStakingAddress(baseAddress: Swift.String) -> Swift.String + public static func getByronAddress(publicKey: WalletCore.PublicKey) -> Swift.String } extension WalletCore.CoinType { public func address(string: Swift.String) -> WalletCore.AnyAddress? @@ -2342,6 +2340,9 @@ public enum CoinType : Swift.UInt32, Swift.CaseIterable { case rootstock case thetaFuel case confluxeSpace + case acala + case acalaEVM + case opBNBtestnet public init?(rawValue: Swift.UInt32) public typealias AllCases = [WalletCore.CoinType] public typealias RawValue = Swift.UInt32 @@ -3950,6 +3951,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case okc case thundertoken case cfxevm + case opbnb case gochain case meter case celo @@ -3964,6 +3966,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case kcc case zksync case heco + case acalaevm case metis case polygonzkevm case moonbeam @@ -7764,8 +7767,12 @@ public struct PBKDF2 { public static func hmacSha512(password: Foundation.Data, salt: Foundation.Data, iterations: Swift.UInt32, dkLen: Swift.UInt32) -> Foundation.Data? } public typealias PolkadotEra = WalletCore.TW_Polkadot_Proto_Era +public typealias PolkadotCustomCallIndices = WalletCore.TW_Polkadot_Proto_CustomCallIndices +public typealias PolkadotCallIndices = WalletCore.TW_Polkadot_Proto_CallIndices public typealias PolkadotBalance = WalletCore.TW_Polkadot_Proto_Balance public typealias PolkadotStaking = WalletCore.TW_Polkadot_Proto_Staking +public typealias PolkadotIdentity = WalletCore.TW_Polkadot_Proto_Identity +public typealias PolkadotPolymeshCall = WalletCore.TW_Polkadot_Proto_PolymeshCall public typealias PolkadotSigningInput = WalletCore.TW_Polkadot_Proto_SigningInput public typealias PolkadotSigningOutput = WalletCore.TW_Polkadot_Proto_SigningOutput public typealias PolkadotRewardDestination = WalletCore.TW_Polkadot_Proto_RewardDestination @@ -7791,6 +7798,25 @@ public struct TW_Polkadot_Proto_Era { public var unknownFields: SwiftProtobuf.UnknownStorage public init() } +public struct TW_Polkadot_Proto_CustomCallIndices { + public var moduleIndex: Swift.Int32 + public var methodIndex: Swift.Int32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() +} +public struct TW_Polkadot_Proto_CallIndices { + public var variant: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant? + public var custom: WalletCore.TW_Polkadot_Proto_CustomCallIndices { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_Variant : Swift.Equatable { + case custom(WalletCore.TW_Polkadot_Proto_CustomCallIndices) + public static func == (a: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant, b: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_Balance { public var messageOneof: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof? public var transfer: WalletCore.TW_Polkadot_Proto_Balance.Transfer { @@ -7801,23 +7827,80 @@ public struct TW_Polkadot_Proto_Balance { get set } + public var assetTransfer: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer { + get + set + } + public var batchAssetTransfer: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case transfer(WalletCore.TW_Polkadot_Proto_Balance.Transfer) case batchTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) + case assetTransfer(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) + case batchAssetTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) public static func == (a: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool } public struct Transfer { public var toAddress: Swift.String public var value: Foundation.Data + public var memo: Swift.String + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BatchTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.Transfer] public var unknownFields: SwiftProtobuf.UnknownStorage public init() } + public struct AssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var toAddress: Swift.String + public var value: Foundation.Data + public var assetID: Swift.UInt32 + public var feeAssetID: Swift.UInt32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct BatchAssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var feeAssetID: Swift.UInt32 + public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer] + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public struct TW_Polkadot_Proto_Staking { @@ -7875,6 +7958,14 @@ public struct TW_Polkadot_Proto_Staking { public var controller: Swift.String public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } @@ -7883,52 +7974,233 @@ public struct TW_Polkadot_Proto_Staking { public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BondExtra { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Unbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Rebond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct WithdrawUnbonded { public var slashingSpans: Swift.Int32 + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Nominate { public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct ChillAndUnbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Chill { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public init() +} +public struct TW_Polkadot_Proto_Identity { + public var messageOneof: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof? + public var joinIdentityAsKey: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey { + get + set + } + public var addAuthorization: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case joinIdentityAsKey(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) + case addAuthorization(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) + public static func == (a: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool + } + public struct JoinIdentityAsKey { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var authID: Swift.UInt64 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AddAuthorization { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var target: Swift.String + public var data: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData { + get + set + } + public var hasData: Swift.Bool { + get + } + public mutating func clearData() + public var expiry: Swift.UInt64 public var unknownFields: SwiftProtobuf.UnknownStorage + public struct DataMessage { + public var data: Foundation.Data + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AuthData { + public var asset: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasAsset: Swift.Bool { + get + } + public mutating func clearAsset() + public var extrinsic: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasExtrinsic: Swift.Bool { + get + } + public mutating func clearExtrinsic() + public var portfolio: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasPortfolio: Swift.Bool { + get + } + public mutating func clearPortfolio() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public init() } +public struct TW_Polkadot_Proto_PolymeshCall { + public var messageOneof: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof? + public var identityCall: WalletCore.TW_Polkadot_Proto_Identity { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case identityCall(WalletCore.TW_Polkadot_Proto_Identity) + public static func == (a: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_SigningInput { - public var blockHash: Foundation.Data - public var genesisHash: Foundation.Data - public var nonce: Swift.UInt64 - public var specVersion: Swift.UInt32 - public var transactionVersion: Swift.UInt32 - public var tip: Foundation.Data + public var blockHash: Foundation.Data { + get + set + } + public var genesisHash: Foundation.Data { + get + set + } + public var nonce: Swift.UInt64 { + get + set + } + public var specVersion: Swift.UInt32 { + get + set + } + public var transactionVersion: Swift.UInt32 { + get + set + } + public var tip: Foundation.Data { + get + set + } public var era: WalletCore.TW_Polkadot_Proto_Era { get set @@ -7937,9 +8209,22 @@ public struct TW_Polkadot_Proto_SigningInput { get } public mutating func clearEra() - public var privateKey: Foundation.Data - public var network: Swift.UInt32 - public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? + public var privateKey: Foundation.Data { + get + set + } + public var network: Swift.UInt32 { + get + set + } + public var multiAddress: Swift.Bool { + get + set + } + public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? { + get + set + } public var balanceCall: WalletCore.TW_Polkadot_Proto_Balance { get set @@ -7948,10 +8233,15 @@ public struct TW_Polkadot_Proto_SigningInput { get set } + public var polymeshCall: WalletCore.TW_Polkadot_Proto_PolymeshCall { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case balanceCall(WalletCore.TW_Polkadot_Proto_Balance) case stakingCall(WalletCore.TW_Polkadot_Proto_Staking) + case polymeshCall(WalletCore.TW_Polkadot_Proto_PolymeshCall) public static func == (a: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool } public init() @@ -7976,6 +8266,26 @@ extension WalletCore.TW_Polkadot_Proto_Era : SwiftProtobuf.Message, SwiftProtobu get } } +extension WalletCore.TW_Polkadot_Proto_CustomCallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices, rhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_CallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CallIndices, rhs: WalletCore.TW_Polkadot_Proto_CallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8006,6 +8316,26 @@ extension WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer : SwiftProtobuf.Mes get } } +extension WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Staking : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8106,28 +8436,88 @@ extension WalletCore.TW_Polkadot_Proto_Staking.Chill : SwiftProtobuf.Message, Sw get } } -extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity, rhs: WalletCore.TW_Polkadot_Proto_Identity) -> Swift.Bool public var hashValue: Swift.Int { get } } -extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool public var hashValue: Swift.Int { get } } -@_hasMissingDesignatedInitializers final public class PrivateKey { - public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_PolymeshCall, rhs: WalletCore.TW_Polkadot_Proto_PolymeshCall) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers final public class PrivateKey { + public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool final public var data: Foundation.Data { get } @@ -9296,419 +9686,6 @@ public enum StoredKeyEncryptionLevel : Swift.UInt32, Swift.CaseIterable { get } } -public typealias SubstrateEra = WalletCore.TW_Substrate_Proto_Era -public typealias SubstrateBalance = WalletCore.TW_Substrate_Proto_Balance -public typealias SubstrateAuthorization = WalletCore.TW_Substrate_Proto_Authorization -public typealias SubstrateIdentity = WalletCore.TW_Substrate_Proto_Identity -public typealias SubstratePolymeshCall = WalletCore.TW_Substrate_Proto_PolymeshCall -public typealias SubstrateSigningInput = WalletCore.TW_Substrate_Proto_SigningInput -public typealias SubstrateSigningOutput = WalletCore.TW_Substrate_Proto_SigningOutput -public struct TW_Substrate_Proto_Era { - public var blockNumber: Swift.UInt64 - public var period: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -public struct TW_Substrate_Proto_Balance { - public var messageOneof: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof? - public var transfer: WalletCore.TW_Substrate_Proto_Balance.Transfer { - get - set - } - public var batchTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer { - get - set - } - public var assetTransfer: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer { - get - set - } - public var batchAssetTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case transfer(WalletCore.TW_Substrate_Proto_Balance.Transfer) - case batchTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) - case assetTransfer(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) - case batchAssetTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) - public static func == (a: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool - } - public struct Transfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var memo: Swift.String - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.Transfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var assetID: Swift.UInt32 - public var feeAssetID: Swift.UInt32 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchAssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var feeAssetID: Swift.UInt32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.AssetTransfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_Authorization { - public var messageOneof: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof? - public var joinIdentity: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentity(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) - public static func == (a: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentity { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var target: Swift.String - public var data: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData { - get - set - } - public var hasData: Swift.Bool { - get - } - public mutating func clearData() - public var expiry: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public struct DataMessage { - public var data: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AuthData { - public var asset: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasAsset: Swift.Bool { - get - } - public mutating func clearAsset() - public var extrinsic: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasExtrinsic: Swift.Bool { - get - } - public mutating func clearExtrinsic() - public var portfolio: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasPortfolio: Swift.Bool { - get - } - public mutating func clearPortfolio() - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() - } - public init() -} -public struct TW_Substrate_Proto_Identity { - public var messageOneof: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof? - public var joinIdentityAsKey: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentityAsKey(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) - public static func == (a: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentityAsKey { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var authID: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_PolymeshCall { - public var messageOneof: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof? - public var authorizationCall: WalletCore.TW_Substrate_Proto_Authorization { - get - set - } - public var identityCall: WalletCore.TW_Substrate_Proto_Identity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case authorizationCall(WalletCore.TW_Substrate_Proto_Authorization) - case identityCall(WalletCore.TW_Substrate_Proto_Identity) - public static func == (a: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningInput { - public var blockHash: Foundation.Data { - get - set - } - public var genesisHash: Foundation.Data { - get - set - } - public var nonce: Swift.UInt64 { - get - set - } - public var specVersion: Swift.UInt32 { - get - set - } - public var transactionVersion: Swift.UInt32 { - get - set - } - public var tip: Foundation.Data { - get - set - } - public var era: WalletCore.TW_Substrate_Proto_Era { - get - set - } - public var hasEra: Swift.Bool { - get - } - public mutating func clearEra() - public var privateKey: Foundation.Data { - get - set - } - public var network: Swift.Int32 { - get - set - } - public var messageOneof: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof? { - get - set - } - public var balanceCall: WalletCore.TW_Substrate_Proto_Balance { - get - set - } - public var multiAddress: Swift.Bool { - get - set - } - public var polymeshCall: WalletCore.TW_Substrate_Proto_PolymeshCall { - get - set - } - public var hasPolymeshCall: Swift.Bool { - get - } - public mutating func clearPolymeshCall() - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case balanceCall(WalletCore.TW_Substrate_Proto_Balance) - public static func == (a: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningOutput { - public var encoded: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -extension WalletCore.TW_Substrate_Proto_Era : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Era, rhs: WalletCore.TW_Substrate_Proto_Era) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance, rhs: WalletCore.TW_Substrate_Proto_Balance) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.Transfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.Transfer, rhs: WalletCore.TW_Substrate_Proto_Balance.Transfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization, rhs: WalletCore.TW_Substrate_Proto_Authorization) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity, rhs: WalletCore.TW_Substrate_Proto_Identity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_PolymeshCall, rhs: WalletCore.TW_Substrate_Proto_PolymeshCall) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningInput, rhs: WalletCore.TW_Substrate_Proto_SigningInput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningOutput, rhs: WalletCore.TW_Substrate_Proto_SigningOutput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers final public class SubstrateAddress : WalletCore.Address { - public static func == (lhs: WalletCore.SubstrateAddress, rhs: WalletCore.SubstrateAddress) -> Swift.Bool - public static func isValidString(string: Swift.String, network: Swift.Int32) -> Swift.Bool - final public var description: Swift.String { - get - } - public init?(string: Swift.String, network: Swift.Int32) - public init(publicKey: WalletCore.PublicKey, network: Swift.Int32) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class SubstrateSigner { - public static func message(data: Foundation.Data) -> Foundation.Data - public static func transaction(data: Foundation.Data, publicKey: Foundation.Data, signature: Foundation.Data) -> Foundation.Data - @objc deinit -} public typealias SuiSignDirect = WalletCore.TW_Sui_Proto_SignDirect public typealias SuiSigningInput = WalletCore.TW_Sui_Proto_SigningInput public typealias SuiSigningOutput = WalletCore.TW_Sui_Proto_SigningOutput @@ -11140,6 +11117,8 @@ extension WalletCore.TW_Waves_Proto_SigningOutput : SwiftProtobuf.Message, Swift } public struct WebAuthn { public static func getPublicKey(attestationObject: Foundation.Data) -> WalletCore.PublicKey? + public static func getRSValues(signature: Foundation.Data) -> Foundation.Data + public static func reconstructOriginalMessage(authenticatorData: Foundation.Data, clientDataJSON: Foundation.Data) -> Foundation.Data } public typealias ZilliqaTransaction = WalletCore.TW_Zilliqa_Proto_Transaction public typealias ZilliqaSigningInput = WalletCore.TW_Zilliqa_Proto_SigningInput diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.abi.json b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.abi.json index 4c1b4b5..a907bf9 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -22868,8 +22868,8 @@ "children": [ { "kind": "Var", - "name": "factory", - "printedName": "factory", + "name": "entryPoint", + "printedName": "entryPoint", "children": [ { "kind": "TypeNominal", @@ -22879,8 +22879,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -22903,8 +22903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -22927,8 +22927,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -22945,8 +22945,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -22955,8 +22955,8 @@ }, { "kind": "Var", - "name": "diamondCutFacet", - "printedName": "diamondCutFacet", + "name": "factory", + "printedName": "factory", "children": [ { "kind": "TypeNominal", @@ -22966,8 +22966,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -22990,8 +22990,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -23014,8 +23014,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -23032,8 +23032,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15diamondCutFacetSSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV7factorySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -23059,7 +23059,8 @@ "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -23212,264 +23213,6 @@ } ] }, - { - "kind": "Var", - "name": "tokenReceiverFacet", - "printedName": "tokenReceiverFacet", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV18tokenReceiverFacetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "diamondLoupeFacet", - "printedName": "diamondLoupeFacet", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV17diamondLoupeFacetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "diamondInit", - "printedName": "diamondInit", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV11diamondInitSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, { "kind": "Var", "name": "facetRegistry", @@ -23558,8 +23301,8 @@ }, { "kind": "Var", - "name": "entryPoint", - "printedName": "entryPoint", + "name": "defaultFallback", + "printedName": "defaultFallback", "children": [ { "kind": "TypeNominal", @@ -23569,14 +23312,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvp", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvp", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -23593,8 +23335,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvg", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvg", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -23617,8 +23359,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvs", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvs", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -23635,8 +23377,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", - "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV10entryPointSSvM", + "usr": "s:10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvM", + "mangledName": "$s10WalletCore34TW_Barz_Proto_ContractAddressInputV15defaultFallbackSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -72508,6 +72250,35 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getByronAddress", + "printedName": "getByronAddress(publicKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore7CardanoV15getByronAddress9publicKeySSAA06PublicH0C_tFZ", + "mangledName": "$s10WalletCore7CardanoV15getByronAddress9publicKeySSAA06PublicH0C_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Struct", @@ -77566,6 +77337,117 @@ "mangledName": "$s10WalletCore8CoinTypeO13confluxeSpaceyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "acala", + "printedName": "acala", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO5acalayA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO5acalayA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "acalaEVM", + "printedName": "acalaEVM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO8acalaEVMyA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO8acalaEVMyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opBNBtestnet", + "printedName": "opBNBtestnet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.CoinType.Type) -> WalletCore.CoinType", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.CoinType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore8CoinTypeO12opBNBtestnetyA2CmF", + "mangledName": "$s10WalletCore8CoinTypeO12opBNBtestnetyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "rawValue", @@ -130891,6 +130773,43 @@ "mangledName": "$s10WalletCore15EthereumChainIDO6cfxevmyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "opbnb", + "printedName": "opbnb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.EthereumChainID.Type) -> WalletCore.EthereumChainID", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.EthereumChainID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15EthereumChainIDO5opbnbyA2CmF", + "mangledName": "$s10WalletCore15EthereumChainIDO5opbnbyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "gochain", @@ -131409,6 +131328,43 @@ "mangledName": "$s10WalletCore15EthereumChainIDO4hecoyA2CmF", "moduleName": "WalletCore" }, + { + "kind": "Var", + "name": "acalaevm", + "printedName": "acalaevm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.EthereumChainID.Type) -> WalletCore.EthereumChainID", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.EthereumChainID.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EthereumChainID", + "printedName": "WalletCore.EthereumChainID", + "usr": "s:10WalletCore15EthereumChainIDO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15EthereumChainIDO8acalaevmyA2CmF", + "mangledName": "$s10WalletCore15EthereumChainIDO8acalaevmyA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", "name": "metis", @@ -260756,32 +260712,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "TW_Polkadot_Proto_Balance", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "TW_Polkadot_Proto_CustomCallIndices", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "moduleIndex", + "printedName": "moduleIndex", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -260798,22 +260746,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -260830,22 +260770,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -260862,8 +260794,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32VvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11moduleIndexs5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -260872,23 +260804,27 @@ }, { "kind": "Var", - "name": "transfer", - "printedName": "transfer", + "name": "methodIndex", + "printedName": "methodIndex", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -260897,96 +260833,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "moduleName": "WalletCore", "accessorKind": "get" }, { @@ -261001,15 +260857,16 @@ }, { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -261024,8 +260881,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32VvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV11methodIndexs5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -261045,8 +260902,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -261068,8 +260925,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -261092,8 +260949,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -261110,8 +260967,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -261119,548 +260976,558 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "transfer", - "printedName": "transfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesVACycfc", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Enum", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ + "Mutating", "AccessControl" ], - "conformances": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "Transfer", - "printedName": "Transfer", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivp", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", + "declKind": "Accessor", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivg", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV9hashValueSivg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV", + "mangledName": "$s10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "TW_Polkadot_Proto_CallIndices", + "children": [ + { + "kind": "Var", + "name": "variant", + "printedName": "variant", + "children": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV7variantAC13OneOf_VariantOSgvM", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "accessorKind": "get" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "set" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0VvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV6customAA0c1_d1_e7_CustomfG0VvM", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -261669,54 +261536,92 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "implicit": true, + "accessorKind": "set" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_Variant", + "printedName": "OneOf_Variant", + "children": [ + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant.Type) -> (WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CustomCallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CustomCallIndices", + "usr": "s:10WalletCore35TW_Polkadot_Proto_CustomCallIndicesV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" + } + ] + } + ] + } ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO6customyAeA0c1_d1_e7_CustomfG0VcAEmF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO6customyAeA0c1_d1_e7_CustomfG0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Function", @@ -261731,649 +261636,58 @@ }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + "name": "OneOf_Variant", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", - "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", + "declKind": "Enum", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13OneOf_VariantO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchTransfer", - "printedName": "BatchTransfer", - "children": [ - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesVACycfc", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262393,8 +261707,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262419,8 +261733,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -262442,8 +261756,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262468,8 +261782,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -262496,8 +261810,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -262527,8 +261841,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -262552,20 +261866,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -262587,8 +261901,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -262606,8 +261920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -262617,8 +261931,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV", + "mangledName": "$s10WalletCore29TW_Polkadot_Proto_CallIndicesV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -262671,8 +261985,8 @@ }, { "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "TW_Polkadot_Proto_Staking", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "TW_Polkadot_Proto_Balance", "children": [ { "kind": "Var", @@ -262682,21 +261996,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -262714,21 +262028,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -262746,21 +262060,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -262777,8 +262091,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262787,19 +262101,19 @@ }, { "kind": "Var", - "name": "bond", - "printedName": "bond", + "name": "transfer", + "printedName": "transfer", "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262812,14 +262126,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262835,14 +262149,14 @@ }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -262858,8 +262172,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8transferAC8TransferVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262868,19 +262182,19 @@ }, { "kind": "Var", - "name": "bondAndNominate", - "printedName": "bondAndNominate", + "name": "batchTransfer", + "printedName": "batchTransfer", "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262893,14 +262207,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262916,14 +262230,14 @@ }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -262939,8 +262253,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13batchTransferAC05BatchH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -262949,19 +262263,19 @@ }, { "kind": "Var", - "name": "bondExtra", - "printedName": "bondExtra", + "name": "assetTransfer", + "printedName": "assetTransfer", "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -262974,14 +262288,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -262997,14 +262311,14 @@ }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -263020,8 +262334,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13assetTransferAC05AssetH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263030,19 +262344,19 @@ }, { "kind": "Var", - "name": "unbond", - "printedName": "unbond", + "name": "batchAssetTransfer", + "printedName": "batchAssetTransfer", "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -263055,14 +262369,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -263078,14 +262392,14 @@ }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -263101,8 +262415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263111,23 +262425,26 @@ }, { "kind": "Var", - "name": "withdrawUnbonded", - "printedName": "withdrawUnbonded", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -263136,15 +262453,16 @@ "children": [ { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -263159,15 +262477,16 @@ }, { "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -263182,8 +262501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -263191,859 +262510,199 @@ ] }, { - "kind": "Var", - "name": "nominate", - "printedName": "nominate", + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", "children": [ { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "transfer", + "printedName": "transfer", "children": [ { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.Transfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "batchTransfer", + "printedName": "batchTransfer", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chill", - "printedName": "chill", - "children": [ - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "assetTransfer", + "printedName": "assetTransfer", "children": [ { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "chillAndUnbond", - "printedName": "chillAndUnbond", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "rebond", - "printedName": "rebond", - "children": [ - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "bond", - "printedName": "bond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bondAndNominate", - "printedName": "bondAndNominate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bondExtra", - "printedName": "bondExtra", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "unbond", - "printedName": "unbond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawUnbonded", - "printedName": "withdrawUnbonded", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nominate", - "printedName": "nominate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "chill", - "printedName": "chill", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "chillAndUnbond", - "printedName": "chillAndUnbond", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "rebond", - "printedName": "rebond", + "kind": "Var", + "name": "batchAssetTransfer", + "printedName": "batchAssetTransfer", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" }, { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof.Type", "children": [ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ] } @@ -264051,8 +262710,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", "moduleName": "WalletCore" }, { @@ -264069,19 +262728,19 @@ { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" }, { "kind": "TypeNominal", "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264089,12 +262748,11 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18OneOf_MessageOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -264108,13 +262766,13 @@ }, { "kind": "TypeDecl", - "name": "Bond", - "printedName": "Bond", + "name": "Transfer", + "printedName": "Transfer", "children": [ { "kind": "Var", - "name": "controller", - "printedName": "controller", + "name": "toAddress", + "printedName": "toAddress", "children": [ { "kind": "TypeNominal", @@ -264124,8 +262782,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264148,8 +262806,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264172,8 +262830,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264190,8 +262848,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9toAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264211,8 +262869,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264235,8 +262893,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264259,8 +262917,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264277,8 +262935,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264287,19 +262945,19 @@ }, { "kind": "Var", - "name": "rewardDestination", - "printedName": "rewardDestination", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264316,14 +262974,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264340,14 +262998,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264364,14 +263022,159 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV11callIndicesAA0c1_d1_e5_CallI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", "name": "unknownFields", @@ -264385,8 +263188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -264408,8 +263211,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -264432,8 +263235,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -264450,8 +263253,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264465,14 +263268,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -264492,8 +263295,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264518,8 +263321,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264541,8 +263344,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264567,8 +263370,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -264595,8 +263398,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -264626,8 +263429,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -264651,20 +263454,20 @@ }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" }, { "kind": "TypeNominal", - "name": "Bond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -264686,8 +263489,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -264705,8 +263508,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -264716,8 +263519,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -264770,32 +263573,29 @@ }, { "kind": "TypeDecl", - "name": "BondAndNominate", - "printedName": "BondAndNominate", + "name": "BatchTransfer", + "printedName": "BatchTransfer", "children": [ { "kind": "Var", - "name": "controller", - "printedName": "controller", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -264804,16 +263604,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -264828,16 +263627,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -264852,8 +263650,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -264862,27 +263660,24 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -264891,178 +263686,69 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV14hasCallIndicesSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "rewardDestination", - "printedName": "rewardDestination", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16clearCallIndicesyyF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_RewardDestination", - "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", - "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "funcSelfKind": "Mutating" }, { "kind": "Var", - "name": "nominators", - "printedName": "nominators", + "name": "transfers", + "printedName": "transfers", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -265074,21 +263760,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265106,21 +263792,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[Swift.String]", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.Transfer]", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Transfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.Transfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8TransferV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265137,8 +263823,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265158,8 +263844,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265181,8 +263867,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265205,8 +263891,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265223,8 +263909,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265238,14 +263924,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -265265,8 +263951,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265291,8 +263977,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265314,8 +264000,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265340,8 +264026,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265368,8 +264054,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -265399,8 +264085,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -265424,20 +264110,20 @@ }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" }, { "kind": "TypeNominal", - "name": "BondAndNominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + "name": "BatchTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265459,8 +264145,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265478,8 +264164,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265489,8 +264175,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13BatchTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -265543,9 +264229,241 @@ }, { "kind": "TypeDecl", - "name": "BondExtra", - "printedName": "BondExtra", + "name": "AssetTransfer", + "printedName": "AssetTransfer", "children": [ + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "toAddress", + "printedName": "toAddress", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9toAddressSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", "name": "value", @@ -265559,8 +264477,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265583,8 +264501,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265607,8 +264525,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265625,8 +264543,182 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "assetID", + "printedName": "assetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "feeAssetID", + "printedName": "feeAssetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265646,8 +264738,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -265669,8 +264761,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -265693,8 +264785,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -265711,8 +264803,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -265726,14 +264818,14 @@ "children": [ { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -265753,8 +264845,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265779,8 +264871,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265802,8 +264894,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265828,8 +264920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -265856,8 +264948,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -265887,8 +264979,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -265912,20 +265004,20 @@ }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" }, { "kind": "TypeNominal", - "name": "BondExtra", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -265947,8 +265039,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265966,8 +265058,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -265977,8 +265069,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -266031,24 +265123,169 @@ }, { "kind": "TypeDecl", - "name": "Unbond", - "printedName": "Unbond", + "name": "BatchAssetTransfer", + "printedName": "BatchAssetTransfer", "children": [ { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "feeAssetID", + "printedName": "feeAssetID", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -266065,14 +265302,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -266089,14 +265326,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -266113,8 +265350,118 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "transfers", + "printedName": "transfers", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer]", + "children": [ + { + "kind": "TypeNominal", + "name": "AssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13AssetTransferV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -266134,8 +265481,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -266157,8 +265504,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -266181,8 +265528,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -266199,8 +265546,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -266214,14 +265561,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -266241,8 +265588,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266267,8 +265614,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -266290,8 +265637,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266316,8 +265663,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -266344,8 +265691,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -266375,8 +265722,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -266400,20 +265747,20 @@ }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" }, { "kind": "TypeNominal", - "name": "Unbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + "name": "BatchAssetTransfer", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -266435,8 +265782,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -266454,8 +265801,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -266465,8 +265812,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV18BatchAssetTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -266518,306 +265865,554 @@ ] }, { - "kind": "TypeDecl", - "name": "Rebond", - "printedName": "Rebond", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV9hashValueSivg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_BalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "TW_Polkadot_Proto_Staking", + "children": [ + { + "kind": "Var", + "name": "messageOneof", + "printedName": "messageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bond", + "printedName": "bond", + "children": [ { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvg", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4bondAC4BondVvM", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bondAndNominate", + "printedName": "bondAndNominate", + "children": [ + { + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -266826,205 +266421,1216 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0Vvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessorKind": "set" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15bondAndNominateAC04BondhI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bondExtra", + "printedName": "bondExtra", + "children": [ + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvg", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "accessorKind": "get" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Rebond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9bondExtraAC04BondH0VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unbond", + "printedName": "unbond", + "children": [ + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6unbondAC6UnbondVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "withdrawUnbonded", + "printedName": "withdrawUnbonded", + "children": [ { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16withdrawUnbondedAC08WithdrawH0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "TypeDecl", - "name": "WithdrawUnbonded", - "printedName": "WithdrawUnbonded", + "kind": "Var", + "name": "nominate", + "printedName": "nominate", "children": [ { - "kind": "Var", - "name": "slashingSpans", - "printedName": "slashingSpans", + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8nominateAC8NominateVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chill", + "printedName": "chill", + "children": [ + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5chillAC5ChillVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "chillAndUnbond", + "printedName": "chillAndUnbond", + "children": [ + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14chillAndUnbondAC05ChillhI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rebond", + "printedName": "rebond", + "children": [ + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6rebondAC6RebondVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "bond", + "printedName": "bond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Bond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO4bondyAeC4BondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "bondAndNominate", + "printedName": "bondAndNominate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO15bondAndNominateyAeC04BondlM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "bondExtra", + "printedName": "bondExtra", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.BondExtra) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO9bondExtrayAeC04BondL0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "unbond", + "printedName": "unbond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Unbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6unbondyAeC6UnbondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "withdrawUnbonded", + "printedName": "withdrawUnbonded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO16withdrawUnbondedyAeC08WithdrawL0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "nominate", + "printedName": "nominate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Nominate) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO8nominateyAeC8NominateVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "chill", + "printedName": "chill", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Chill) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO5chillyAeC5ChillVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "chillAndUnbond", + "printedName": "chillAndUnbond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO14chillAndUnbondyAeC05ChilllM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "rebond", + "printedName": "rebond", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking.Rebond) -> WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO6rebondyAeC6RebondVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.OneOf_MessageOneof", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bond", + "printedName": "Bond", + "children": [ + { + "kind": "Var", + "name": "controller", + "printedName": "controller", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -267041,14 +267647,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267065,14 +267671,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267089,8 +267695,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV10controllerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -267099,24 +267705,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -267127,14 +267734,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267151,14 +267758,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267175,59 +267782,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rewardDestination", + "printedName": "rewardDestination", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -267237,298 +267821,82 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0Ovs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "WithdrawUnbonded", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17rewardDestinationAA0c1_d1_e7_RewardI0OvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Nominate", - "printedName": "Nominate", - "children": [ { "kind": "Var", - "name": "nominators", - "printedName": "nominators", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -267537,24 +267905,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -267569,24 +267928,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -267601,14 +267951,77 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV11callIndicesAA0c1_d1_e5_CallI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", "name": "unknownFields", @@ -267622,8 +268035,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -267645,8 +268058,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -267669,8 +268082,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -267687,8 +268100,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -267702,14 +268115,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -267729,8 +268142,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267755,8 +268168,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -267778,8 +268191,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267804,8 +268217,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -267832,8 +268245,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -267863,8 +268276,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -267888,20 +268301,20 @@ }, { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" }, { "kind": "TypeNominal", - "name": "Nominate", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + "name": "Bond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Bond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -267923,8 +268336,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -267942,8 +268355,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -267953,8 +268366,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV4BondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV4BondV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -268007,24 +268420,24 @@ }, { "kind": "TypeDecl", - "name": "ChillAndUnbond", - "printedName": "ChillAndUnbond", + "name": "BondAndNominate", + "printedName": "BondAndNominate", "children": [ { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "controller", + "printedName": "controller", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -268041,14 +268454,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268065,14 +268478,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268089,8 +268502,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10controllerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -268099,24 +268512,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -268127,14 +268541,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268151,14 +268565,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268175,59 +268589,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV5value10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rewardDestination", + "printedName": "rewardDestination", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -268237,46 +268628,92 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_RewardDestination", + "printedName": "WalletCore.TW_Polkadot_Proto_RewardDestination", + "usr": "s:10WalletCore35TW_Polkadot_Proto_RewardDestinationO" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0Ovs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17rewardDestinationAA0c1_d1_e7_RewardK0OvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "nominators", + "printedName": "nominators", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -268286,136 +268723,180 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV10nominatorsSaySSGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "ChillAndUnbond", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -268424,80 +268905,41 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV14hasCallIndicesSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Chill", - "printedName": "Chill", - "children": [ { "kind": "Var", "name": "unknownFields", @@ -268511,14 +268953,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -268535,8 +268976,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -268559,8 +269000,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -268577,8 +269018,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -268592,14 +269033,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateVAEycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -268619,8 +269060,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268645,8 +269086,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -268668,8 +269109,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268694,8 +269135,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -268722,8 +269163,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -268753,8 +269194,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -268778,20 +269219,20 @@ }, { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" }, { "kind": "TypeNominal", - "name": "Chill", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + "name": "BondAndNominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondAndNominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -268813,8 +269254,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -268832,8 +269273,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -268843,8 +269284,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV15BondAndNominateV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -268896,391 +269337,224 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "TypeDecl", + "name": "BondExtra", + "printedName": "BondExtra", "children": [ { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingVACycfc", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + ] }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV", - "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "TW_Polkadot_Proto_SigningInput", - "children": [ - { - "kind": "Var", - "name": "blockHash", - "printedName": "blockHash", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", @@ -269288,149 +269562,226 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "genesisHash", - "printedName": "genesisHash", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "nonce", - "printedName": "nonce", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -269439,240 +269790,194 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "specVersion", - "printedName": "specVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" + }, + { + "kind": "TypeNominal", + "name": "BondExtra", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.BondExtra", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transactionVersion", - "printedName": "transactionVersion", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9BondExtraV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { - "kind": "Var", - "name": "tip", - "printedName": "tip", + "kind": "TypeDecl", + "name": "Unbond", + "printedName": "Unbond", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", @@ -269681,164 +269986,167 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "era", - "printedName": "era", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } + "declAttributes": [ + "AccessControl", + "RawDocComment" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Era", - "printedName": "WalletCore.TW_Polkadot_Proto_Era", - "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasEra", - "printedName": "hasEra", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", @@ -269847,363 +270155,297 @@ "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearEra", - "printedName": "clearEra()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -270212,722 +270454,600 @@ }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "stakingCall", - "printedName": "stakingCall", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" }, { "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + "name": "Unbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Unbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6UnbondV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "name": "Rebond", + "printedName": "Rebond", "children": [ { "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "name": "value", + "printedName": "value", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Balance", - "printedName": "WalletCore.TW_Polkadot_Proto_Balance", - "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" - } - ] + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "stakingCall", - "printedName": "stakingCall", + "name": "callIndices", + "printedName": "callIndices", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_Staking", - "printedName": "WalletCore.TW_Polkadot_Proto_Staking", - "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" - } - ] + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", - "moduleName": "WalletCore" + ] }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" - }, + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" - }, + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", + "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "Void", + "printedName": "()" } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16clearCallIndicesyyF", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondVAEycfc", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningInput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV", - "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "TW_Polkadot_Proto_SigningOutput", - "children": [ - { - "kind": "Var", - "name": "encoded", - "printedName": "encoded", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -270936,196 +271056,404 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" + }, + { + "kind": "TypeNominal", + "name": "Rebond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Rebond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV6RebondV", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WithdrawUnbonded", + "printedName": "WithdrawUnbonded", + "children": [ + { + "kind": "Var", + "name": "slashingSpans", + "printedName": "slashingSpans", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13slashingSpanss5Int32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", @@ -271133,42 +271461,21 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", @@ -271177,108 +271484,105 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -271287,47 +271591,47 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", @@ -271336,136 +271640,143 @@ "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + }, + { + "kind": "TypeNominal", + "name": "WithdrawUnbonded", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.WithdrawUnbonded", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "TW_Polkadot_Proto_SigningOutput", - "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", @@ -271474,1264 +271785,1094 @@ "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV", - "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PrivateKey", - "printedName": "PrivateKey", - "children": [ - { - "kind": "Function", - "name": "isValid", - "printedName": "isValid(data:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", - "mangledName": "$s10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16WithdrawUnbondedV", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { - "kind": "Var", - "name": "data", - "printedName": "data", + "kind": "TypeDecl", + "name": "Nominate", + "printedName": "Nominate", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "nominators", + "printedName": "nominators", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyCACycfc", - "mangledName": "$s10WalletCore10PrivateKeyCACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV10nominatorsSaySSGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sq" + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", - "mangledName": "$s10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore10PrivateKeyC3keyACSgAC_tcfc", - "mangledName": "$s10WalletCore10PrivateKeyC3keyACSgAC_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getPublicKey", - "printedName": "getPublicKey(coinType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyByType", - "printedName": "getPublicKeyByType(pubkeyType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeySecp256k1", - "printedName": "getPublicKeySecp256k1(compressed:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyNist256p1", - "printedName": "getPublicKeyNist256p1()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519", - "printedName": "getPublicKeyEd25519()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519Blake2b", - "printedName": "getPublicKeyEd25519Blake2b()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyEd25519Cardano", - "printedName": "getPublicKeyEd25519Cardano()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPublicKeyCurve25519", - "printedName": "getPublicKeyCurve25519()", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", - "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSharedKey", - "printedName": "getSharedKey(publicKey:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", - "mangledName": "$s10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sign", - "printedName": "sign(digest:curve:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "Curve", - "printedName": "WalletCore.Curve", - "usr": "s:10WalletCore5CurveO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", - "mangledName": "$s10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "signAsDER", - "printedName": "signAsDER(digest:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "signZilliqaSchnorr", - "printedName": "signZilliqaSchnorr(message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" } ], - "usr": "s:Sq" + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore10PrivateKeyC", - "mangledName": "$s10WalletCore10PrivateKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "PrivateKeyType", - "printedName": "PrivateKeyType", - "children": [ - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PrivateKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore14PrivateKeyTypeO7defaultyA2CmF", - "mangledName": "$s10WalletCore14PrivateKeyTypeO7defaultyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "cardano", - "printedName": "cardano", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PrivateKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", - "mangledName": "$s10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKeyType?", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "usr": "s:Sq" + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" - } - ], - "usr": "s:Sa" + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" + }, + { + "kind": "TypeNominal", + "name": "Nominate", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Nominate", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore14PrivateKeyTypeO", - "mangledName": "$s10WalletCore14PrivateKeyTypeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PrivateKeyType]", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKeyType", - "printedName": "WalletCore.PrivateKeyType", - "usr": "s:10WalletCore14PrivateKeyTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "PublicKey", - "printedName": "PublicKey", - "children": [ - { - "kind": "Function", - "name": "isValid", - "printedName": "isValid(data:type:)", - "children": [ + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8NominateV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", - "mangledName": "$s10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "recover", - "printedName": "recover(signature:message:)", + "kind": "TypeDecl", + "name": "ChillAndUnbond", + "printedName": "ChillAndUnbond", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKey?", + "kind": "Var", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV5value10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", - "mangledName": "$s10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isCompressed", - "printedName": "isCompressed", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvp", - "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvg", - "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "compressed", - "printedName": "compressed", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC10compressedACvp", - "mangledName": "$s10WalletCore9PublicKeyC10compressedACvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC10compressedACvg", - "mangledName": "$s10WalletCore9PublicKeyC10compressedACvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "uncompressed", - "printedName": "uncompressed", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC12uncompressedACvp", - "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "Void", + "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC12uncompressedACvg", - "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvg", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16clearCallIndicesyyF", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "Mutating", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "keyType", - "printedName": "keyType", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", - "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", - "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondVAEycfc", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC11descriptionSSvp", - "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -272740,609 +272881,875 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC11descriptionSSvg", - "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(data:type:)", - "children": [ + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKey?", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", - "mangledName": "$s10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "verify", - "printedName": "verify(signature:message:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + }, + { + "kind": "TypeNominal", + "name": "ChillAndUnbond", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.ChillAndUnbond", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV14ChillAndUnbondV", "moduleName": "WalletCore", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyAsDER", - "printedName": "verifyAsDER(signature:message:)", - "children": [ + "conformances": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyZilliqaSchnorr", - "printedName": "verifyZilliqaSchnorr(signature:message:)", - "children": [ + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", - "mangledName": "$s10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Var", - "name": "bitcoinKeyHash", - "printedName": "bitcoinKeyHash", + "kind": "TypeDecl", + "name": "Chill", + "printedName": "Chill", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", - "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", - "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "Final" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:10WalletCore9PublicKeyC", - "mangledName": "$s10WalletCore9PublicKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "PublicKeyType", - "printedName": "PublicKeyType", - "children": [ - { - "kind": "Var", - "name": "secp256k1", - "printedName": "secp256k1", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0VvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV11callIndicesAA0c1_d1_e5_CallI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "secp256k1Extended", - "printedName": "secp256k1Extended", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nist256p1", - "printedName": "nist256p1", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16clearCallIndicesyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "nist256p1Extended", - "printedName": "nist256p1Extended", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519", - "printedName": "ed25519", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO7ed25519yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO7ed25519yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519Blake2b", - "printedName": "ed25519Blake2b", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - }, + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "curve25519", - "printedName": "curve25519", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO10curve25519yA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO10curve25519yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "ed25519Cardano", - "printedName": "ed25519Cardano", - "children": [ + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ] + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "starkex", - "printedName": "starkex", - "children": [ + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.PublicKeyType.Type", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + }, + { + "kind": "TypeNominal", + "name": "Chill", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking.Chill", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore13PublicKeyTypeO7starkexyA2CmF", - "mangledName": "$s10WalletCore13PublicKeyTypeO7starkexyA2CmF", - "moduleName": "WalletCore" + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV5ChillV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PublicKeyType?", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingVACycfc", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -273351,46 +273758,185 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivp", + "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -273399,46 +273945,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore13PublicKeyTypeO", - "mangledName": "$s10WalletCore13PublicKeyTypeO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV", + "mangledName": "$s10WalletCore25TW_Polkadot_Proto_StakingV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -273449,456 +274007,41 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.PublicKeyType]", - "children": [ - { - "kind": "TypeNominal", - "name": "PublicKeyType", - "printedName": "WalletCore.PublicKeyType", - "usr": "s:10WalletCore13PublicKeyTypeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "Purpose", - "printedName": "Purpose", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "TW_Polkadot_Proto_Identity", "children": [ { "kind": "Var", - "name": "bip44", - "printedName": "bip44", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip44yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip44yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip49", - "printedName": "bip49", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip49yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip49yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip84", - "printedName": "bip84", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO5bip84yA2CmF", - "mangledName": "$s10WalletCore7PurposeO5bip84yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "bip1852", - "printedName": "bip1852", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.Purpose.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore7PurposeO7bip1852yA2CmF", - "mangledName": "$s10WalletCore7PurposeO7bip1852yA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.Purpose?", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", "children": [ { "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" } ], "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore7PurposeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvpZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore7PurposeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore7PurposeO", - "mangledName": "$s10WalletCore7PurposeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.Purpose]", - "children": [ - { - "kind": "TypeNominal", - "name": "Purpose", - "printedName": "WalletCore.Purpose", - "usr": "s:10WalletCore7PurposeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "TW_Ripple_Proto_CurrencyAmount", - "children": [ - { - "kind": "Var", - "name": "currency", - "printedName": "currency", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -273915,14 +274058,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -273939,14 +274090,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -273963,8 +274122,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -273973,27 +274132,23 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "joinIdentityAsKey", + "printedName": "joinIdentityAsKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -274002,16 +274157,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -274026,16 +274180,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -274050,8 +274203,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274060,27 +274213,23 @@ }, { "kind": "Var", - "name": "issuer", - "printedName": "issuer", + "name": "addAuthorization", + "printedName": "addAuthorization", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -274089,16 +274238,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -274113,16 +274261,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -274137,8 +274284,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16addAuthorizationAC03AddH0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274158,8 +274305,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -274181,8 +274328,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -274205,8 +274352,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -274223,8 +274370,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -274232,492 +274379,401 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "joinIdentityAsKey", + "printedName": "joinIdentityAsKey", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "kind": "Var", + "name": "addAuthorization", + "printedName": "addAuthorization", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO16addAuthorizationyAeC03AddL0VcAEmF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO16addAuthorizationyAeC03AddL0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "funcSelfKind": "NonMutating" } ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Enum", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV18OneOf_MessageOneofO", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - }, + "conformances": [ { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } - ], - "declKind": "Func", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "TypeDecl", + "name": "JoinIdentityAsKey", + "printedName": "JoinIdentityAsKey", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV", - "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "TW_Ripple_Proto_OperationTrustSet", - "children": [ - { - "kind": "Var", - "name": "limitAmount", - "printedName": "limitAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV11callIndicesAA0c1_d1_e5_CallK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "accessorKind": "get" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16clearCallIndicesyyF", "moduleName": "WalletCore", - "accessorKind": "set" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "authID", + "printedName": "authID", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasLimitAmount", - "printedName": "hasLimitAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearLimitAmount", - "printedName": "clearLimitAmount()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", @@ -274726,108 +274782,105 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyVAEycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyVAEycfc", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -274836,47 +274889,47 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", @@ -274885,276 +274938,47 @@ "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV", - "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "TW_Ripple_Proto_OperationPayment", - "children": [ - { - "kind": "Var", - "name": "amountOneof", - "printedName": "amountOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -275163,261 +274987,340 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" - } - ], - "usr": "s:Sq" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "accessorKind": "get" + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" + }, + { + "kind": "TypeNominal", + "name": "JoinIdentityAsKey", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currencyAmount", - "printedName": "currencyAmount", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV04JoinF5AsKeyV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AddAuthorization", + "printedName": "AddAuthorization", + "children": [ + { + "kind": "Var", + "name": "callIndices", + "printedName": "callIndices", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvp", "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_CallIndices", + "printedName": "WalletCore.TW_Polkadot_Proto_CallIndices", + "usr": "s:10WalletCore29TW_Polkadot_Proto_CallIndicesV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11callIndicesAA0c1_d1_e5_CallJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "hasCallIndices", + "printedName": "hasCallIndices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "destination", - "printedName": "destination", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV14hasCallIndicesSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Function", + "name": "clearCallIndices", + "printedName": "clearCallIndices()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16clearCallIndicesyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16clearCallIndicesyyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "target", + "printedName": "target", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "String", @@ -275425,104 +275328,208 @@ "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6targetSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "destinationTag", - "printedName": "destinationTag", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV4dataAE8AuthDataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "hasData", + "printedName": "hasData", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV7hasDataSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "clearData", + "printedName": "clearData()", "children": [ { "kind": "TypeNominal", @@ -275530,67 +275537,109 @@ "printedName": "()" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9clearDatayyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9clearDatayyF", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "expiry", + "printedName": "expiry", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV6expirys6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UnknownStorage", @@ -275598,182 +275647,1705 @@ "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_AmountOneof", - "printedName": "OneOf_AmountOneof", - "children": [ + ] + }, { - "kind": "Var", - "name": "amount", - "printedName": "amount", + "kind": "TypeDecl", + "name": "DataMessage", + "printedName": "DataMessage", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "Var", + "name": "data", + "printedName": "data", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0VvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV4data10Foundation0I0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "currencyAmount", - "printedName": "currencyAmount", - "children": [ + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_CurrencyAmount", - "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", - "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageVAGycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageVAGycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV05protoJ4NameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "TypeNominal", - "name": "OneOf_AmountOneof", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV2eeoiySbAG_AGtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV2eeoiySbAG_AGtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { - "kind": "Conformance", + "kind": "TypeDecl", + "name": "AuthData", + "printedName": "AuthData", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV5assetAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasAsset", + "printedName": "hasAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8hasAssetSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV10clearAssetyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "extrinsic", + "printedName": "extrinsic", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9extrinsicAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasExtrinsic", + "printedName": "hasExtrinsic", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasExtrinsicSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearExtrinsic", + "printedName": "clearExtrinsic()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearExtrinsicyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearExtrinsicyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "portfolio", + "printedName": "portfolio", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataMessage", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV11DataMessageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9portfolioAE0J7MessageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hasPortfolio", + "printedName": "hasPortfolio", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV12hasPortfolioSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearPortfolio", + "printedName": "clearPortfolio()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearPortfolioyyF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV14clearPortfolioyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataVAGycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataVAGycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + }, + { + "kind": "TypeNominal", + "name": "AuthData", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV2eeoiySbAG_AGtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV2eeoiySbAG_AGtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8AuthDataV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationVAEycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationVAEycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + }, + { + "kind": "TypeNominal", + "name": "AddAuthorization", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16AddAuthorizationV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", "name": "Equatable", "printedName": "Equatable", "usr": "s:SQ", @@ -275788,14 +277360,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityVACycfc", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -275815,8 +277387,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -275841,8 +277413,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -275864,8 +277436,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -275890,8 +277462,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -275918,8 +277490,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -275949,8 +277521,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -275974,20 +277546,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276009,8 +277581,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivp", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276028,8 +277600,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivg", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276039,8 +277611,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV", - "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV", + "mangledName": "$s10WalletCore26TW_Polkadot_Proto_IdentityV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -276093,24 +277665,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "TW_Ripple_Proto_OperationNFTokenBurn", + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "TW_Polkadot_Proto_PolymeshCall", "children": [ { "kind": "Var", - "name": "nftokenID", - "printedName": "nftokenID", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -276127,14 +277707,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -276151,14 +277739,22 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -276175,8 +277771,89 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "identityCall", + "printedName": "identityCall", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276196,8 +277873,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -276219,8 +277896,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -276243,8 +277920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -276261,14 +277938,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "identityCall", + "printedName": "identityCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Identity) -> WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Identity) -> WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Identity", + "printedName": "WalletCore.TW_Polkadot_Proto_Identity", + "usr": "s:10WalletCore26TW_Polkadot_Proto_IdentityV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -276276,14 +278058,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallVACycfc", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -276303,8 +278085,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276329,8 +278111,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -276352,8 +278134,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276378,8 +278160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -276406,8 +278188,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -276437,8 +278219,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -276462,20 +278244,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -276497,8 +278279,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276516,8 +278298,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -276527,8 +278309,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", - "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_PolymeshCallV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -276581,13 +278363,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "TW_Polkadot_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "nftokenID", - "printedName": "nftokenID", + "name": "blockHash", + "printedName": "blockHash", "children": [ { "kind": "TypeNominal", @@ -276597,16 +278379,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276621,10 +278400,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276645,10 +278423,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276663,8 +278440,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9blockHash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276673,27 +278450,24 @@ }, { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "genesisHash", + "printedName": "genesisHash", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276702,16 +278476,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276726,16 +278499,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276750,8 +278522,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11genesisHash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276760,26 +278532,24 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "nonce", + "printedName": "nonce", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276788,16 +278558,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -276812,16 +278581,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -276836,8 +278604,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV5nonces6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -276845,51 +278613,107 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "specVersion", + "printedName": "specVersion", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11specVersions6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "transactionVersion", + "printedName": "transactionVersion", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276898,47 +278722,80 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18transactionVersions6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "tip", + "printedName": "tip", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -276947,136 +278804,162 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3tip10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "era", + "printedName": "era", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" } ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Era", + "printedName": "WalletCore.TW_Polkadot_Proto_Era", + "usr": "s:10WalletCore21TW_Polkadot_Proto_EraV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "hasEra", + "printedName": "hasEra", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -277085,84 +278968,45 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV6hasEraSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "clearEra", + "printedName": "clearEra()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8clearErayyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "children": [ { "kind": "Var", - "name": "sellOffer", - "printedName": "sellOffer", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", @@ -277172,16 +279016,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277196,10 +279037,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277220,10 +279060,9 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277238,8 +279077,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -277248,26 +279087,24 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "network", + "printedName": "network", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277276,16 +279113,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277300,16 +279136,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277324,60 +279159,34 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV7networks6UInt32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "multiAddress", + "printedName": "multiAddress", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277386,47 +279195,88 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12multiAddressSbvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "messageOneof", + "printedName": "messageOneof", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277435,136 +279285,176 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "balanceCall", + "printedName": "balanceCall", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" } ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "stakingCall", + "printedName": "stakingCall", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -277573,111 +279463,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV11stakingCallAA0c1_d1_E8_StakingVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "children": [ { "kind": "Var", - "name": "tokenOffers", - "printedName": "tokenOffers", + "name": "polymeshCall", + "printedName": "polymeshCall", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -277686,24 +279544,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -277718,24 +279567,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -277750,8 +279590,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -277771,8 +279611,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -277794,8 +279634,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -277818,8 +279658,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -277836,14 +279676,220 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_MessageOneof", + "printedName": "OneOf_MessageOneof", + "children": [ + { + "kind": "Var", + "name": "balanceCall", + "printedName": "balanceCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Balance) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Balance", + "printedName": "WalletCore.TW_Polkadot_Proto_Balance", + "usr": "s:10WalletCore25TW_Polkadot_Proto_BalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "stakingCall", + "printedName": "stakingCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_Staking) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_Staking", + "printedName": "WalletCore.TW_Polkadot_Proto_Staking", + "usr": "s:10WalletCore25TW_Polkadot_Proto_StakingV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO11stakingCallyAeA0c1_d1_E8_StakingVcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "polymeshCall", + "printedName": "polymeshCall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Polkadot_Proto_PolymeshCall) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Polkadot_Proto_PolymeshCall) -> WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_PolymeshCall", + "printedName": "WalletCore.TW_Polkadot_Proto_PolymeshCall", + "usr": "s:10WalletCore30TW_Polkadot_Proto_PolymeshCallV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO12polymeshCallyAeA0c1_d1_e9_PolymeshM0VcAEmF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO12polymeshCallyAeA0c1_d1_e9_PolymeshM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_MessageOneof", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV18OneOf_MessageOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -277851,14 +279897,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -277878,8 +279924,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -277904,8 +279950,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -277927,8 +279973,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -277953,8 +279999,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -277981,8 +280027,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -278012,8 +280058,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -278037,20 +280083,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "TW_Polkadot_Proto_SigningInput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningInput", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -278072,8 +280118,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -278091,8 +280137,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -278102,8 +280148,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", - "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", + "usr": "s:10WalletCore30TW_Polkadot_Proto_SigningInputV", + "mangledName": "$s10WalletCore30TW_Polkadot_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -278156,24 +280202,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "TW_Ripple_Proto_SigningInput", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "TW_Polkadot_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "fee", - "printedName": "fee", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278190,14 +280236,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278214,14 +280260,14 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278238,8 +280284,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV7encoded10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278248,19 +280294,19 @@ }, { "kind": "Var", - "name": "sequence", - "printedName": "sequence", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278277,14 +280323,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278301,14 +280347,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278325,8 +280371,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278335,19 +280381,19 @@ }, { "kind": "Var", - "name": "lastLedgerSequence", - "printedName": "lastLedgerSequence", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -278364,14 +280410,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278388,14 +280434,14 @@ }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278412,8 +280458,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -278422,25 +280468,24 @@ }, { "kind": "Var", - "name": "account", - "printedName": "account", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -278451,14 +280496,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -278475,14 +280520,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -278499,36 +280544,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "flags", - "printedName": "flags", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -278538,84 +280606,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -278625,191 +280655,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "operationOneof", - "printedName": "operationOneof", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl" ], - "hasStorage": true, - "accessors": [ + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" + }, + { + "kind": "TypeNominal", + "name": "TW_Polkadot_Proto_SigningOutput", + "printedName": "WalletCore.TW_Polkadot_Proto_SigningOutput", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "opTrustSet", - "printedName": "opTrustSet", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -278818,78 +280793,146 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore31TW_Polkadot_Proto_SigningOutputV", + "mangledName": "$s10WalletCore31TW_Polkadot_Proto_SigningOutputV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PrivateKey", + "printedName": "PrivateKey", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(data:curve:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "mangledName": "$s10WalletCore10PrivateKeyC7isValid4data5curveSb10Foundation4DataV_AA5CurveOtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -278899,412 +280942,410 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "usr": "s:10WalletCore10PrivateKeyC4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore10PrivateKeyC4data10Foundation4DataVvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "opNftokenBurn", - "printedName": "opNftokenBurn", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyCACycfc", + "mangledName": "$s10WalletCore10PrivateKeyCACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", + "mangledName": "$s10WalletCore10PrivateKeyC4dataACSg10Foundation4DataV_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore10PrivateKeyC3keyACSgAC_tcfc", + "mangledName": "$s10WalletCore10PrivateKeyC3keyACSgAC_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "opNftokenCreateOffer", - "printedName": "opNftokenCreateOffer", + "kind": "Function", + "name": "getPublicKey", + "printedName": "getPublicKey(coinType:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD08coinTypeAA0fD0CAA04CoinH0O_tF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyByType", + "printedName": "getPublicKeyByType(pubkeyType:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD6ByType06pubkeyH0AA0fD0CAA0fdH0O_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeySecp256k1", + "printedName": "getPublicKeySecp256k1(compressed:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Secp256k110compressedAA0fD0CSb_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "opNftokenAcceptOffer", - "printedName": "opNftokenAcceptOffer", + "kind": "Function", + "name": "getPublicKeyNist256p1", + "printedName": "getPublicKeyNist256p1()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD9Nist256p1AA0fD0CyF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519", + "printedName": "getPublicKeyEd25519()", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD7Ed25519AA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519Blake2b", + "printedName": "getPublicKeyEd25519Blake2b()", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519Blake2bAA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyEd25519Cardano", + "printedName": "getPublicKeyEd25519Cardano()", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD14Ed25519CardanoAA0fD0CyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "opNftokenCancelOffer", - "printedName": "opNftokenCancelOffer", + "kind": "Function", + "name": "getPublicKeyCurve25519", + "printedName": "getPublicKeyCurve25519()", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", + "mangledName": "$s10WalletCore10PrivateKeyC09getPublicD10Curve25519AA0fD0CyF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSharedKey", + "printedName": "getSharedKey(publicKey:curve:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", + "mangledName": "$s10WalletCore10PrivateKeyC09getSharedD006publicD05curve10Foundation4DataVSgAA06PublicD0C_AA5CurveOtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sign", + "printedName": "sign(digest:curve:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "publicKey", - "printedName": "publicKey", - "children": [ + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Curve", + "printedName": "WalletCore.Curve", + "usr": "s:10WalletCore5CurveO" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", + "mangledName": "$s10WalletCore10PrivateKeyC4sign6digest5curve10Foundation4DataVSgAI_AA5CurveOtF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signAsDER", + "printedName": "signAsDER(digest:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ { "kind": "TypeNominal", @@ -279313,23 +281354,36 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore10PrivateKeyC9signAsDER6digest10Foundation4DataVSgAH_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signZilliqaSchnorr", + "printedName": "signZilliqaSchnorr(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Data", @@ -279337,520 +281391,167 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Func", + "usr": "s:10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore10PrivateKeyC18signZilliqaSchnorr7message10Foundation4DataVSgAH_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore10PrivateKeyC", + "mangledName": "$s10WalletCore10PrivateKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "PrivateKeyType", + "printedName": "PrivateKeyType", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_OperationOneof", - "printedName": "OneOf_OperationOneof", - "children": [ - { - "kind": "Var", - "name": "opTrustSet", - "printedName": "opTrustSet", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationTrustSet", - "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", - "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationPayment", - "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", - "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenBurn", - "printedName": "opNftokenBurn", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenBurn", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", - "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenCreateOffer", - "printedName": "opNftokenCreateOffer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "name": "Metatype", + "printedName": "WalletCore.PrivateKeyType.Type", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore14PrivateKeyTypeO7defaultyA2CmF", + "mangledName": "$s10WalletCore14PrivateKeyTypeO7defaultyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "cardano", + "printedName": "cardano", + "children": [ { - "kind": "Var", - "name": "opNftokenAcceptOffer", - "printedName": "opNftokenAcceptOffer", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PrivateKeyType.Type) -> WalletCore.PrivateKeyType", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opNftokenCancelOffer", - "printedName": "opNftokenCancelOffer", - "children": [ + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PrivateKeyType.Type", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", - "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", - "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" } ] } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "declKind": "EnumElement", + "usr": "s:10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", + "mangledName": "$s10WalletCore14PrivateKeyTypeO7cardanoyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Optional", + "printedName": "WalletCore.PrivateKeyType?", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -279859,47 +281560,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -279908,136 +281608,224 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore14PrivateKeyTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore14PrivateKeyTypeO", + "mangledName": "$s10WalletCore14PrivateKeyTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "usr": "s:SY", + "mangledName": "$sSY" }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.PrivateKeyType]", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKeyType", + "printedName": "WalletCore.PrivateKeyType", + "usr": "s:10WalletCore14PrivateKeyTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PublicKey", + "printedName": "PublicKey", + "children": [ { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "isValid", + "printedName": "isValid(data:type:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", + "mangledName": "$s10WalletCore9PublicKeyC7isValid4data4typeSb10Foundation4DataV_AA0cD4TypeOtFZ", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "recover", + "printedName": "recover(signature:message:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "WalletCore.PublicKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningInput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", + "mangledName": "$s10WalletCore9PublicKeyC7recover9signature7messageACSg10Foundation4DataV_AJtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "isCompressed", + "printedName": "isCompressed", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvp", + "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -280046,103 +281834,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore9PublicKeyC12isCompressedSbvg", + "mangledName": "$s10WalletCore9PublicKeyC12isCompressedSbvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV", - "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "TW_Ripple_Proto_SigningOutput", - "children": [ { "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "name": "compressed", + "printedName": "compressed", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "usr": "s:10WalletCore9PublicKeyC10compressedACvp", + "mangledName": "$s10WalletCore9PublicKeyC10compressedACvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280151,85 +281879,88 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "usr": "s:10WalletCore9PublicKeyC10compressedACvg", + "mangledName": "$s10WalletCore9PublicKeyC10compressedACvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "uncompressed", + "printedName": "uncompressed", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore9PublicKeyC12uncompressedACvp", + "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvp", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "usr": "s:10WalletCore9PublicKeyC12uncompressedACvg", + "mangledName": "$s10WalletCore9PublicKeyC12uncompressedACvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280238,85 +281969,43 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore9PublicKeyC4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore9PublicKeyC4data10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "keyType", + "printedName": "keyType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", + "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280325,173 +282014,26 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", + "mangledName": "$s10WalletCore9PublicKeyC7keyTypeAA0cdF0Ovg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", @@ -280501,18 +282043,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore9PublicKeyC11descriptionSSvp", + "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -280527,130 +282065,61 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore9PublicKeyC11descriptionSSvg", + "mangledName": "$s10WalletCore9PublicKeyC11descriptionSSvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Constructor", + "name": "init", + "printedName": "init(data:type:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Optional", + "printedName": "WalletCore.PublicKey?", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Constructor", + "usr": "s:10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", + "mangledName": "$s10WalletCore9PublicKeyC4data4typeACSg10Foundation4DataV_AA0cD4TypeOtcfc", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "verify", + "printedName": "verify(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280660,142 +282129,32 @@ }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "TW_Ripple_Proto_SigningOutput", - "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC6verify9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV", - "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "RippleXAddress", - "printedName": "RippleXAddress", - "children": [ { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "verifyAsDER", + "printedName": "verifyAsDER(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280805,22 +282164,21 @@ }, { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC11verifyAsDER9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "Final", "AccessControl", @@ -280830,8 +282188,8 @@ }, { "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:)", + "name": "verifyZilliqaSchnorr", + "printedName": "verifyZilliqaSchnorr(signature:message:)", "children": [ { "kind": "TypeNominal", @@ -280841,16 +282199,21 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", - "mangledName": "$s10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "usr": "s:10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", + "mangledName": "$s10WalletCore9PublicKeyC20verifyZilliqaSchnorr9signature7messageSb10Foundation4DataV_AItF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "Final", "AccessControl", @@ -280860,25 +282223,25 @@ }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "bitcoinKeyHash", + "printedName": "bitcoinKeyHash", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvp", + "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", + "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "Final", - "AccessControl", "RawDocComment" ], + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -280887,194 +282250,325 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvg", + "usr": "s:10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", + "mangledName": "$s10WalletCore9PublicKeyC07bitcoinD4Hash10Foundation4DataVvg", "moduleName": "WalletCore", "declAttributes": [ "Final" ], + "isFromExtension": true, "accessorKind": "get" } ] - }, + } + ], + "declKind": "Class", + "usr": "s:10WalletCore9PublicKeyC", + "mangledName": "$s10WalletCore9PublicKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "PublicKeyType", + "printedName": "PublicKeyType", + "children": [ { "kind": "Var", - "name": "tag", - "printedName": "tag", + "name": "secp256k1", + "printedName": "secp256k1", "children": [ { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvp", - "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO9secp256k1yA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "secp256k1Extended", + "printedName": "secp256k1Extended", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvg", - "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO17secp256k1ExtendedyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", + "kind": "Var", + "name": "nist256p1", + "printedName": "nist256p1", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.RippleXAddress?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore14RippleXAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore14RippleXAddressC6stringACSgSS_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO9nist256p1yA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(publicKey:tag:)", + "kind": "Var", + "name": "nist256p1Extended", + "printedName": "nist256p1Extended", "children": [ { - "kind": "TypeNominal", - "name": "RippleXAddress", - "printedName": "WalletCore.RippleXAddress", - "usr": "s:10WalletCore14RippleXAddressC" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", - "mangledName": "$s10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO17nist256p1ExtendedyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "ed25519", + "printedName": "ed25519", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore14RippleXAddressC", - "mangledName": "$s10WalletCore14RippleXAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO7ed25519yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO7ed25519yA2CmF", + "moduleName": "WalletCore" + }, { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + "kind": "Var", + "name": "ed25519Blake2b", + "printedName": "ed25519Blake2b", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519Blake2byA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "SS58AddressType", - "printedName": "SS58AddressType", - "children": [ + "kind": "Var", + "name": "curve25519", + "printedName": "curve25519", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.PublicKeyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore13PublicKeyTypeO10curve25519yA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO10curve25519yA2CmF", + "moduleName": "WalletCore" + }, { "kind": "Var", - "name": "polkadot", - "printedName": "polkadot", + "name": "ed25519Cardano", + "printedName": "ed25519Cardano", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.SS58AddressType.Type", + "printedName": "WalletCore.PublicKeyType.Type", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ] } @@ -281082,36 +282576,36 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore15SS58AddressTypeO8polkadotyA2CmF", - "mangledName": "$s10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "usr": "s:10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO14ed25519CardanoyA2CmF", "moduleName": "WalletCore" }, { "kind": "Var", - "name": "kusama", - "printedName": "kusama", + "name": "starkex", + "printedName": "starkex", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", + "printedName": "(WalletCore.PublicKeyType.Type) -> WalletCore.PublicKeyType", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.SS58AddressType.Type", + "printedName": "WalletCore.PublicKeyType.Type", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ] } @@ -281119,8 +282613,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore15SS58AddressTypeO6kusamayA2CmF", - "mangledName": "$s10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "usr": "s:10WalletCore13PublicKeyTypeO7starkexyA2CmF", + "mangledName": "$s10WalletCore13PublicKeyTypeO7starkexyA2CmF", "moduleName": "WalletCore" }, { @@ -281131,27 +282625,27 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.SS58AddressType?", + "printedName": "WalletCore.PublicKeyType?", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", "implicit": true, "init_kind": "Designated" @@ -281163,14 +282657,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", "implicit": true, "accessors": [ @@ -281181,14 +282675,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", - "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", + "usr": "s:10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore13PublicKeyTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281203,21 +282697,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", + "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -281230,21 +282724,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore13PublicKeyTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -281254,14 +282748,14 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore15SS58AddressTypeO", - "mangledName": "$s10WalletCore15SS58AddressTypeO", + "usr": "s:10WalletCore13PublicKeyTypeO", + "mangledName": "$s10WalletCore13PublicKeyTypeO", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt8", + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", @@ -281289,9 +282783,9 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ] } @@ -281312,13 +282806,13 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.SS58AddressType]", + "printedName": "[WalletCore.PublicKeyType]", "children": [ { "kind": "TypeNominal", - "name": "SS58AddressType", - "printedName": "WalletCore.SS58AddressType", - "usr": "s:10WalletCore15SS58AddressTypeO" + "name": "PublicKeyType", + "printedName": "WalletCore.PublicKeyType", + "usr": "s:10WalletCore13PublicKeyTypeO" } ], "usr": "s:Sa" @@ -281331,198 +282825,209 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SegwitAddress", - "printedName": "SegwitAddress", + "name": "Purpose", + "printedName": "Purpose", "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "bip44", + "printedName": "bip44", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" - }, - { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip44yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip44yA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:)", + "kind": "Var", + "name": "bip49", + "printedName": "bip49", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", - "mangledName": "$s10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip49yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip49yA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "bip84", + "printedName": "bip84", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO5bip84yA2CmF", + "mangledName": "$s10WalletCore7PurposeO5bip84yA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "hrp", - "printedName": "hrp", + "name": "bip1852", + "printedName": "bip1852", "children": [ { - "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.Purpose.Type) -> WalletCore.Purpose", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.Purpose.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvp", - "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore7PurposeO7bip1852yA2CmF", + "mangledName": "$s10WalletCore7PurposeO7bip1852yA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Purpose?", "children": [ { "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvg", - "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore7PurposeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "witnessVersion", - "printedName": "witnessVersion", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", + "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -281531,43 +283036,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", + "usr": "s:10WalletCore7PurposeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore7PurposeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "witnessProgram", - "printedName": "witnessProgram", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", + "usr": "s:10WalletCore7PurposeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -281576,115 +283084,105 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", - "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", + "usr": "s:10WalletCore7PurposeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore7PurposeO8allCasesSayACGvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore7PurposeO", + "mangledName": "$s10WalletCore7PurposeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.SegwitAddress?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SegwitAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore13SegwitAddressC6stringACSgSS_tcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(hrp:publicKey:)", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeNominal", - "name": "SegwitAddress", - "printedName": "WalletCore.SegwitAddress", - "usr": "s:10WalletCore13SegwitAddressC" - }, - { - "kind": "TypeNominal", - "name": "HRP", - "printedName": "WalletCore.HRP", - "usr": "s:10WalletCore3HRPO" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.Purpose]", + "children": [ + { + "kind": "TypeNominal", + "name": "Purpose", + "printedName": "WalletCore.Purpose", + "usr": "s:10WalletCore7PurposeO" + } + ], + "usr": "s:Sa" + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", - "mangledName": "$s10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore13SegwitAddressC", - "mangledName": "$s10WalletCore13SegwitAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } ] }, @@ -281707,13 +283205,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_Transfer", - "printedName": "TW_Solana_Proto_Transfer", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "TW_Ripple_Proto_CurrencyAmount", "children": [ { "kind": "Var", - "name": "recipient", - "printedName": "recipient", + "name": "currency", + "printedName": "currency", "children": [ { "kind": "TypeNominal", @@ -281723,8 +283221,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -281747,8 +283245,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281771,8 +283269,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -281789,8 +283287,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8currencySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -281801,93 +283299,6 @@ "kind": "Var", "name": "value", "printedName": "value", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "memo", - "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -281897,8 +283308,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -281921,8 +283332,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -281945,8 +283356,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -281963,8 +283374,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV5valueSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -281973,27 +283384,19 @@ }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "issuer", + "printedName": "issuer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282010,22 +283413,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282042,22 +283437,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282074,8 +283461,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV6issuerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282095,8 +283482,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282118,8 +283505,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282142,8 +283529,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282160,8 +283547,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282175,14 +283562,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferVACycfc", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferVACycfc", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -282202,8 +283589,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282228,8 +283615,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282251,8 +283638,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282277,8 +283664,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282305,8 +283692,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -282336,8 +283723,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -282361,20 +283748,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Func", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282396,8 +283783,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -282415,8 +283802,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -282426,8 +283813,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV", - "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV", + "mangledName": "$s10WalletCore30TW_Ripple_Proto_CurrencyAmountV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -282480,32 +283867,29 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "TW_Solana_Proto_DelegateStake", + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "TW_Ripple_Proto_OperationTrustSet", "children": [ { "kind": "Var", - "name": "validatorPubkey", - "printedName": "validatorPubkey", + "name": "limitAmount", + "printedName": "limitAmount", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -282514,16 +283898,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -282538,16 +283921,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -282562,8 +283944,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV11limitAmountAA0c1_d1_e9_CurrencyJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282572,27 +283954,24 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "hasLimitAmount", + "printedName": "hasLimitAmount", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -282601,148 +283980,40 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV14hasLimitAmountSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "kind": "Function", + "name": "clearLimitAmount", + "printedName": "clearLimitAmount()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", + "declKind": "Func", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16clearLimitAmountyyF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Mutating", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "funcSelfKind": "Mutating" }, { "kind": "Var", @@ -282757,8 +284028,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -282780,8 +284051,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -282804,8 +284075,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -282822,8 +284093,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -282837,14 +284108,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -282864,8 +284135,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282890,8 +284161,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282913,8 +284184,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -282939,8 +284210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -282967,8 +284238,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -282998,8 +284269,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -283023,20 +284294,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283058,8 +284329,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283077,8 +284348,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283088,8 +284359,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV", + "mangledName": "$s10WalletCore33TW_Ripple_Proto_OperationTrustSetV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -283142,13 +284413,286 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "TW_Solana_Proto_DeactivateStake", + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "TW_Ripple_Proto_OperationPayment", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "amountOneof", + "printedName": "amountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11amountOneofAC012OneOf_AmountI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV6amounts5Int64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currencyAmount", + "printedName": "currencyAmount", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14currencyAmountAA0c1_d1_e9_CurrencyI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", @@ -283158,8 +284702,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283182,8 +284726,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283206,8 +284750,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283224,8 +284768,95 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV11destinationSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destinationTag", + "printedName": "destinationTag", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV14destinationTags5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283245,8 +284876,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283268,8 +284899,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283292,8 +284923,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283310,14 +284941,170 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "TypeDecl", + "name": "OneOf_AmountOneof", + "printedName": "OneOf_AmountOneof", + "children": [ + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int64) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO6amountyAEs5Int64VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "currencyAmount", + "printedName": "currencyAmount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type) -> (WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_CurrencyAmount) -> WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_CurrencyAmount", + "printedName": "WalletCore.TW_Ripple_Proto_CurrencyAmount", + "usr": "s:10WalletCore30TW_Ripple_Proto_CurrencyAmountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO08currencyJ0yAeA0c1_d1_e9_CurrencyJ0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_AmountOneof", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment.OneOf_AmountOneof", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17OneOf_AmountOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, { "kind": "Constructor", "name": "init", @@ -283325,14 +285112,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -283352,8 +285139,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283378,8 +285165,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283401,8 +285188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283427,8 +285214,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283455,8 +285242,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -283486,8 +285273,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -283511,20 +285298,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283546,8 +285333,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283565,8 +285352,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -283576,8 +285363,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV", - "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV", + "mangledName": "$s10WalletCore32TW_Ripple_Proto_OperationPaymentV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -283630,32 +285417,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "TW_Solana_Proto_DeactivateAllStake", + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "TW_Ripple_Proto_OperationNFTokenBurn", "children": [ { "kind": "Var", - "name": "stakeAccounts", - "printedName": "stakeAccounts", + "name": "nftokenID", + "printedName": "nftokenID", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283672,22 +285451,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283704,22 +285475,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283736,8 +285499,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9nftokenID10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283757,8 +285520,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -283780,8 +285543,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -283804,8 +285567,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -283822,8 +285585,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -283837,14 +285600,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -283864,8 +285627,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283890,8 +285653,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283913,8 +285676,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -283939,8 +285702,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -283967,8 +285730,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -283998,8 +285761,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -284023,20 +285786,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284058,8 +285821,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284077,8 +285840,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284088,8 +285851,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", + "mangledName": "$s10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -284142,24 +285905,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "TW_Solana_Proto_WithdrawStake", + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenCreateOffer", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "nftokenID", + "printedName": "nftokenID", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284176,14 +285939,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284200,14 +285963,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284224,8 +285987,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9nftokenID10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284234,19 +285997,19 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284263,14 +286026,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284287,14 +286050,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284311,8 +286074,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284332,8 +286095,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284355,8 +286118,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284379,8 +286142,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284397,8 +286160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284412,14 +286175,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -284439,8 +286202,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284465,8 +286228,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -284488,8 +286251,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284514,8 +286277,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -284542,8 +286305,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -284573,8 +286336,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -284598,20 +286361,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -284633,8 +286396,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284652,8 +286415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -284663,8 +286426,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -284717,24 +286480,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "TW_Solana_Proto_StakeAccountValue", + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", "children": [ { "kind": "Var", - "name": "stakeAccount", - "printedName": "stakeAccount", + "name": "sellOffer", + "printedName": "sellOffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284751,14 +286514,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284775,14 +286538,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284799,8 +286562,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV04sellI010Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284809,106 +286572,19 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -284930,8 +286606,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -284954,8 +286630,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -284972,8 +286648,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -284987,14 +286663,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -285014,8 +286690,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285040,8 +286716,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285063,8 +286739,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285089,8 +286765,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285117,8 +286793,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -285148,8 +286824,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -285173,20 +286849,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285208,8 +286884,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285227,8 +286903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285238,8 +286914,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV", - "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -285292,32 +286968,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "TW_Solana_Proto_WithdrawAllStake", + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "TW_Ripple_Proto_OperationNFTokenCancelOffer", "children": [ { "kind": "Var", - "name": "stakeAccounts", - "printedName": "stakeAccounts", + "name": "tokenOffers", + "printedName": "tokenOffers", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285335,21 +287011,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285367,21 +287043,21 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "printedName": "[Foundation.Data]", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_StakeAccountValue", - "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", - "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285398,8 +287074,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV11tokenOffersSay10Foundation4DataVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285419,8 +287095,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285442,8 +287118,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285466,8 +287142,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285484,8 +287160,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285499,14 +287175,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -285526,8 +287202,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285552,8 +287228,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285575,8 +287251,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285601,8 +287277,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -285629,8 +287305,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -285660,8 +287336,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -285685,20 +287361,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -285720,8 +287396,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285739,8 +287415,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -285750,8 +287426,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", - "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", + "mangledName": "$s10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -285804,24 +287480,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "TW_Solana_Proto_CreateTokenAccount", + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "TW_Ripple_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "mainAddress", - "printedName": "mainAddress", + "name": "fee", + "printedName": "fee", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285838,14 +287514,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285862,14 +287538,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285886,8 +287562,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV3fees5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285896,19 +287572,19 @@ }, { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "sequence", + "printedName": "sequence", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -285925,14 +287601,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -285949,14 +287625,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -285973,8 +287649,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8sequences5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -285983,19 +287659,19 @@ }, { "kind": "Var", - "name": "tokenAddress", - "printedName": "tokenAddress", + "name": "lastLedgerSequence", + "printedName": "lastLedgerSequence", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -286012,14 +287688,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286036,14 +287712,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286060,8 +287736,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV18lastLedgerSequences5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286070,24 +287746,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "account", + "printedName": "account", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -286098,14 +287775,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286122,14 +287799,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286146,59 +287823,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV7accountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "flags", + "printedName": "flags", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -286208,282 +287862,77 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64Vvs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV5flagss5Int64VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "TW_Solana_Proto_TokenTransfer", - "children": [ { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -286500,14 +287949,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286524,14 +287973,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286548,8 +287997,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286558,25 +288007,32 @@ }, { "kind": "Var", - "name": "senderTokenAddress", - "printedName": "senderTokenAddress", + "name": "operationOneof", + "printedName": "operationOneof", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -286587,14 +288043,22 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -286611,14 +288075,22 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -286635,8 +288107,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286645,27 +288117,23 @@ }, { "kind": "Var", - "name": "recipientTokenAddress", - "printedName": "recipientTokenAddress", + "name": "opTrustSet", + "printedName": "opTrustSet", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286674,16 +288142,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286698,16 +288165,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286722,8 +288188,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV10opTrustSetAA0c1_d1_e10_OperationiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286732,27 +288198,23 @@ }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "opPayment", + "printedName": "opPayment", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286761,16 +288223,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286785,16 +288246,15 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286809,8 +288269,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286819,27 +288279,23 @@ }, { "kind": "Var", - "name": "decimals", - "printedName": "decimals", + "name": "opNftokenBurn", + "printedName": "opNftokenBurn", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286848,16 +288304,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286872,16 +288327,15 @@ }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286896,8 +288350,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13opNftokenBurnAA0c1_d1_e17_OperationNFTokenJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286906,27 +288360,23 @@ }, { "kind": "Var", - "name": "memo", - "printedName": "memo", + "name": "opNftokenCreateOffer", + "printedName": "opNftokenCreateOffer", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -286935,16 +288385,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -286959,16 +288408,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -286983,8 +288431,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCreateOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -286993,35 +288441,23 @@ }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "opNftokenAcceptOffer", + "printedName": "opNftokenAcceptOffer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -287030,24 +288466,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -287062,24 +288489,15 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -287094,8 +288512,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenAcceptOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287104,26 +288522,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "opNftokenCancelOffer", + "printedName": "opNftokenCancelOffer", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -287132,16 +288547,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -287156,16 +288570,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -287180,59 +288593,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20opNftokenCancelOfferAA0c1_d1_e17_OperationNFTokenjK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "publicKey", + "printedName": "publicKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -287242,46 +288632,83 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9publicKey10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -287291,30 +288718,544 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OneOf_OperationOneof", + "printedName": "OneOf_OperationOneof", + "children": [ + { + "kind": "Var", + "name": "opTrustSet", + "printedName": "opTrustSet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationTrustSet) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationTrustSet", + "printedName": "WalletCore.TW_Ripple_Proto_OperationTrustSet", + "usr": "s:10WalletCore33TW_Ripple_Proto_OperationTrustSetV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO10opTrustSetyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationPayment) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationPayment", + "printedName": "WalletCore.TW_Ripple_Proto_OperationPayment", + "usr": "s:10WalletCore32TW_Ripple_Proto_OperationPaymentV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenBurn", + "printedName": "opNftokenBurn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenBurn) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenBurn", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenBurn", + "usr": "s:10WalletCore36TW_Ripple_Proto_OperationNFTokenBurnV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO13opNftokenBurnyAeA0c1_d1_e1_j7NFTokenN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenCreateOffer", + "printedName": "opNftokenCreateOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenCreateOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCreateOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCreateOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCreateOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenAcceptOffer", + "printedName": "opNftokenAcceptOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenAcceptOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenAcceptOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenAcceptOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opNftokenCancelOffer", + "printedName": "opNftokenCancelOffer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer) -> WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_OperationNFTokenCancelOffer", + "printedName": "WalletCore.TW_Ripple_Proto_OperationNFTokenCancelOffer", + "usr": "s:10WalletCore43TW_Ripple_Proto_OperationNFTokenCancelOfferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO20opNftokenCancelOfferyAeA0c1_d1_e1_j7NFTokennO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV20OneOf_OperationOneofO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", "printedName": "()" }, { @@ -287325,8 +289266,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -287356,8 +289297,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -287381,20 +289322,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "TW_Ripple_Proto_SigningInput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -287416,8 +289357,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -287435,8 +289376,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -287446,8 +289387,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV", + "usr": "s:10WalletCore28TW_Ripple_Proto_SigningInputV", + "mangledName": "$s10WalletCore28TW_Ripple_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -287500,24 +289441,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "TW_Solana_Proto_CreateAndTransferToken", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "TW_Ripple_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "recipientMainAddress", - "printedName": "recipientMainAddress", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287534,14 +289475,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287558,14 +289499,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287582,8 +289523,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV7encoded10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287592,19 +289533,19 @@ }, { "kind": "Var", - "name": "tokenMintAddress", - "printedName": "tokenMintAddress", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287621,14 +289562,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287645,14 +289586,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287669,8 +289610,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287679,8 +289620,8 @@ }, { "kind": "Var", - "name": "recipientTokenAddress", - "printedName": "recipientTokenAddress", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", @@ -287690,8 +289631,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -287714,8 +289655,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287738,8 +289679,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287756,8 +289697,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -287766,25 +289707,24 @@ }, { "kind": "Var", - "name": "senderTokenAddress", - "printedName": "senderTokenAddress", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -287795,14 +289735,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -287819,14 +289759,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -287843,36 +289783,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -287882,84 +289845,46 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "decimals", - "printedName": "decimals", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -287969,85 +289894,136 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "memo", - "printedName": "memo", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" + }, + { + "kind": "TypeNominal", + "name": "TW_Ripple_Proto_SigningOutput", + "printedName": "WalletCore.TW_Ripple_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV" } ], - "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", + "declKind": "Func", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -288056,93 +290032,177 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore29TW_Ripple_Proto_SigningOutputV", + "mangledName": "$s10WalletCore29TW_Ripple_Proto_SigningOutputV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "RippleXAddress", + "printedName": "RippleXAddress", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + }, + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore14RippleXAddressC2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isValidString", + "printedName": "isValidString(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "mangledName": "$s10WalletCore14RippleXAddressC13isValidString6stringSbSS_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "references", - "printedName": "references", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288151,100 +290211,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "usr": "s:10WalletCore14RippleXAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore14RippleXAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "tag", + "printedName": "tag", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvp", + "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288253,108 +290256,247 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore14RippleXAddressC3tags6UInt32Vvg", + "mangledName": "$s10WalletCore14RippleXAddressC3tags6UInt32Vvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.RippleXAddress?", + "children": [ + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + } + ], + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore14RippleXAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore14RippleXAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(publicKey:tag:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RippleXAddress", + "printedName": "WalletCore.RippleXAddress", + "usr": "s:10WalletCore14RippleXAddressC" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", + "mangledName": "$s10WalletCore14RippleXAddressC9publicKey3tagAcA06PublicF0C_s6UInt32Vtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore14RippleXAddressC", + "mangledName": "$s10WalletCore14RippleXAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SS58AddressType", + "printedName": "SS58AddressType", + "children": [ + { + "kind": "Var", + "name": "polkadot", + "printedName": "polkadot", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Metatype", + "printedName": "WalletCore.SS58AddressType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "mangledName": "$s10WalletCore15SS58AddressTypeO8polkadotyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "kusama", + "printedName": "kusama", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.SS58AddressType.Type) -> WalletCore.SS58AddressType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.SS58AddressType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "mangledName": "$s10WalletCore15SS58AddressTypeO6kusamayA2CmF", + "moduleName": "WalletCore" }, { "kind": "Constructor", "name": "init", - "printedName": "init()", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "Optional", + "printedName": "WalletCore.SS58AddressType?", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValueACSgs5UInt8V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -288363,47 +290505,46 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", + "mangledName": "$s10WalletCore15SS58AddressTypeO8rawValues5UInt8Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -288412,87 +290553,163 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore15SS58AddressTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore15SS58AddressTypeO", + "mangledName": "$s10WalletCore15SS58AddressTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt8", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "usr": "s:SY", + "mangledName": "$sSY" }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.SS58AddressType]", + "children": [ + { + "kind": "TypeNominal", + "name": "SS58AddressType", + "printedName": "WalletCore.SS58AddressType", + "usr": "s:10WalletCore15SS58AddressTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SegwitAddress", + "printedName": "SegwitAddress", + "children": [ { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + }, + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" } ], "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore13SegwitAddressC2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "isValidString", + "printedName": "isValidString(string:)", "children": [ { "kind": "TypeNominal", @@ -288502,46 +290719,44 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", + "mangledName": "$s10WalletCore13SegwitAddressC13isValidString6stringSbSS_tFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", + "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], "accessors": [ { "kind": "Accessor", @@ -288550,103 +290765,43 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", + "usr": "s:10WalletCore13SegwitAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore13SegwitAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", - "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "TW_Solana_Proto_CreateNonceAccount", - "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "hrp", + "printedName": "hrp", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvp", + "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288655,84 +290810,43 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore13SegwitAddressC3hrpAA3HRPOvg", + "mangledName": "$s10WalletCore13SegwitAddressC3hrpAA3HRPOvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "rent", - "printedName": "rent", + "name": "witnessVersion", + "printedName": "witnessVersion", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", + "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288741,66 +290855,26 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "usr": "s:10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessVersions5Int32Vvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "nonceAccountPrivateKey", - "printedName": "nonceAccountPrivateKey", + "name": "witnessProgram", + "printedName": "witnessProgram", "children": [ { "kind": "TypeNominal", @@ -288810,16 +290884,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", + "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -288834,11 +290906,176 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "usr": "s:10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", + "mangledName": "$s10WalletCore13SegwitAddressC14witnessProgram10Foundation4DataVvg", "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.SegwitAddress?", + "children": [ + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SegwitAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore13SegwitAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hrp:publicKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SegwitAddress", + "printedName": "WalletCore.SegwitAddress", + "usr": "s:10WalletCore13SegwitAddressC" + }, + { + "kind": "TypeNominal", + "name": "HRP", + "printedName": "WalletCore.HRP", + "usr": "s:10WalletCore3HRPO" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", + "mangledName": "$s10WalletCore13SegwitAddressC3hrp9publicKeyAcA3HRPO_AA06PublicG0Ctcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore13SegwitAddressC", + "mangledName": "$s10WalletCore13SegwitAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SwiftProtobuf", + "printedName": "SwiftProtobuf", + "declKind": "Import", + "moduleName": "WalletCore" + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_Transfer", + "printedName": "TW_Solana_Proto_Transfer", + "children": [ + { + "kind": "Var", + "name": "recipient", + "printedName": "recipient", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { "kind": "Accessor", @@ -288852,14 +291089,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -288876,8 +291113,293 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9recipientSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV5values6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -288897,8 +291419,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -288920,8 +291442,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -288944,8 +291466,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -288962,8 +291484,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -288977,14 +291499,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferVACycfc", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -289004,8 +291526,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289030,8 +291552,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289053,8 +291575,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289079,8 +291601,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289107,8 +291629,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -289138,8 +291660,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -289163,20 +291685,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289198,8 +291720,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289217,8 +291739,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289228,11 +291750,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV", - "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV", + "mangledName": "$s10WalletCore24TW_Solana_Proto_TransferV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -289281,13 +291804,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "TW_Solana_Proto_WithdrawNonceAccount", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "TW_Solana_Proto_DelegateStake", "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "validatorPubkey", + "printedName": "validatorPubkey", "children": [ { "kind": "TypeNominal", @@ -289297,8 +291820,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289321,8 +291844,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289345,8 +291868,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289363,8 +291886,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV15validatorPubkeySSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289373,24 +291896,25 @@ }, { "kind": "Var", - "name": "recipient", - "printedName": "recipient", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -289401,14 +291925,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289425,14 +291949,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289449,8 +291973,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289459,24 +291983,25 @@ }, { "kind": "Var", - "name": "value", - "printedName": "value", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -289487,14 +292012,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289511,14 +292036,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289535,8 +292060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289556,8 +292081,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289579,8 +292104,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -289603,8 +292128,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -289621,8 +292146,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -289636,14 +292161,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -289663,8 +292188,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289689,8 +292214,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289712,8 +292237,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289738,8 +292263,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -289766,8 +292291,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -289797,8 +292322,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -289822,20 +292347,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Func", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -289857,8 +292382,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289876,8 +292401,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -289887,11 +292412,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", - "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_DelegateStakeV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -289940,13 +292466,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "TW_Solana_Proto_AdvanceNonceAccount", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "TW_Solana_Proto_DeactivateStake", "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", @@ -289956,8 +292482,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -289980,8 +292506,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290004,8 +292530,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290022,8 +292548,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290043,8 +292569,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290066,8 +292592,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290090,8 +292616,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290108,8 +292634,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290123,14 +292649,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -290150,8 +292676,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290176,8 +292702,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -290199,8 +292725,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290225,8 +292751,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -290253,8 +292779,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -290284,8 +292810,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -290309,20 +292835,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Func", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -290344,8 +292870,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -290363,8 +292889,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -290374,11 +292900,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", - "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV", + "mangledName": "$s10WalletCore31TW_Solana_Proto_DeactivateStakeV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -290427,24 +292954,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "TW_Solana_Proto_SigningInput", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "TW_Solana_Proto_DeactivateAllStake", "children": [ { "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "name": "stakeAccounts", + "printedName": "stakeAccounts", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290461,14 +292996,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290485,14 +293028,22 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290509,8 +293060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13stakeAccountsSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290519,25 +293070,24 @@ }, { "kind": "Var", - "name": "recentBlockhash", - "printedName": "recentBlockhash", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -290548,14 +293098,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290572,14 +293122,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290596,35 +293146,59 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "v0Msg", - "printedName": "v0Msg", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -290634,85 +293208,282 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, { "kind": "Var", - "name": "transactionType", - "printedName": "transactionType", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_DeactivateAllStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "TW_Solana_Proto_WithdrawStake", + "children": [ + { + "kind": "Var", + "name": "stakeAccount", + "printedName": "stakeAccount", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -290729,22 +293500,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -290761,22 +293524,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -290793,8 +293548,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV12stakeAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290803,23 +293558,27 @@ }, { "kind": "Var", - "name": "transferTransaction", - "printedName": "transferTransaction", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290828,15 +293587,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -290851,15 +293611,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -290874,8 +293635,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -290884,23 +293645,26 @@ }, { "kind": "Var", - "name": "delegateStakeTransaction", - "printedName": "delegateStakeTransaction", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290909,15 +293673,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -290932,15 +293697,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -290955,33 +293721,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "deactivateStakeTransaction", - "printedName": "deactivateStakeTransaction", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -290990,79 +293783,47 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "deactivateAllStakeTransaction", - "printedName": "deactivateAllStakeTransaction", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291071,65 +293832,100 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "withdrawTransaction", - "printedName": "withdrawTransaction", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + }, { "kind": "TypeNominal", "name": "TW_Solana_Proto_WithdrawStake", @@ -291137,13 +293933,35 @@ "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", + "declKind": "Func", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "AccessControl" ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -291152,79 +293970,103 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_WithdrawStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "TW_Solana_Proto_StakeAccountValue", + "children": [ { "kind": "Var", - "name": "withdrawAllTransaction", - "printedName": "withdrawAllTransaction", + "name": "stakeAccount", + "printedName": "stakeAccount", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291233,15 +294075,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291256,15 +294099,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291279,8 +294123,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV05stakeG0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291289,23 +294133,27 @@ }, { "kind": "Var", - "name": "createTokenAccountTransaction", - "printedName": "createTokenAccountTransaction", + "name": "value", + "printedName": "value", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291314,15 +294162,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291337,15 +294186,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291360,8 +294210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291370,23 +294220,26 @@ }, { "kind": "Var", - "name": "tokenTransferTransaction", - "printedName": "tokenTransferTransaction", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291395,15 +294248,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291418,15 +294272,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291441,33 +294296,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "createAndTransferTokenTransaction", - "printedName": "createAndTransferTokenTransaction", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291476,79 +294358,47 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "createNonceAccount", - "printedName": "createNonceAccount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291557,79 +294407,249 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV04hashH0Sivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "mangledName": "$s10WalletCore33TW_Solana_Proto_StakeAccountValueV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "TW_Solana_Proto_WithdrawAllStake", + "children": [ { "kind": "Var", - "name": "withdrawNonceAccount", - "printedName": "withdrawNonceAccount", + "name": "stakeAccounts", + "printedName": "stakeAccounts", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291638,15 +294658,24 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291661,15 +294690,24 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + "name": "Array", + "printedName": "[WalletCore.TW_Solana_Proto_StakeAccountValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_StakeAccountValue", + "printedName": "WalletCore.TW_Solana_Proto_StakeAccountValue", + "usr": "s:10WalletCore33TW_Solana_Proto_StakeAccountValueV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291684,8 +294722,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13stakeAccountsSayAA0c1_d1_e1_H12AccountValueVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291694,23 +294732,26 @@ }, { "kind": "Var", - "name": "advanceNonceAccount", - "printedName": "advanceNonceAccount", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -291719,15 +294760,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -291742,15 +294784,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -291765,18 +294808,39 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "sender", - "printedName": "sender", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", @@ -291786,15 +294850,17 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -291810,60 +294876,265 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "set" + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "mangledName": "$s10WalletCore32TW_Solana_Proto_WithdrawAllStakeV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "TW_Solana_Proto_CreateTokenAccount", + "children": [ { "kind": "Var", - "name": "nonceAccount", - "printedName": "nonceAccount", + "name": "mainAddress", + "printedName": "mainAddress", "children": [ { "kind": "TypeNominal", @@ -291873,8 +295144,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -291897,8 +295168,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -291921,8 +295192,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -291939,8 +295210,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV11mainAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -291949,19 +295220,19 @@ }, { "kind": "Var", - "name": "feePayerPrivateKey", - "printedName": "feePayerPrivateKey", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -291978,14 +295249,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292002,14 +295273,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292026,8 +295297,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292036,8 +295307,8 @@ }, { "kind": "Var", - "name": "feePayer", - "printedName": "feePayer", + "name": "tokenAddress", + "printedName": "tokenAddress", "children": [ { "kind": "TypeNominal", @@ -292047,8 +295318,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -292071,8 +295342,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292095,8 +295366,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292113,8 +295384,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV12tokenAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292134,8 +295405,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -292157,8 +295428,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -292181,8 +295452,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -292199,8 +295470,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -292208,789 +295479,133 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_TransactionType", - "printedName": "OneOf_TransactionType", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "transferTransaction", - "printedName": "transferTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_Transfer", - "printedName": "WalletCore.TW_Solana_Proto_Transfer", - "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ { - "kind": "Var", - "name": "delegateStakeTransaction", - "printedName": "delegateStakeTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DelegateStake", - "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", - "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", - "moduleName": "WalletCore" - }, + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "deactivateStakeTransaction", - "printedName": "deactivateStakeTransaction", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", - "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Var", - "name": "deactivateAllStakeTransaction", - "printedName": "deactivateAllStakeTransaction", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_DeactivateAllStake", - "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", - "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawTransaction", - "printedName": "withdrawTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", - "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawAllTransaction", - "printedName": "withdrawAllTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawAllStake", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", - "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createTokenAccountTransaction", - "printedName": "createTokenAccountTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateTokenAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "tokenTransferTransaction", - "printedName": "tokenTransferTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_TokenTransfer", - "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", - "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createAndTransferTokenTransaction", - "printedName": "createAndTransferTokenTransaction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateAndTransferToken", - "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", - "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "createNonceAccount", - "printedName": "createNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_CreateNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", - "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "withdrawNonceAccount", - "printedName": "withdrawNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_WithdrawNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", - "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "advanceNonceAccount", - "printedName": "advanceNonceAccount", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_AdvanceNonceAccount", - "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", - "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_TransactionType", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", @@ -293000,8 +295615,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -293031,8 +295646,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -293056,20 +295671,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningInput", - "printedName": "WalletCore.TW_Solana_Proto_SigningInput", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293091,8 +295706,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293110,8 +295725,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293121,8 +295736,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV", - "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateTokenAccountV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -293175,13 +295790,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "TW_Solana_Proto_SigningOutput", + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "TW_Solana_Proto_TokenTransfer", "children": [ { "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", "children": [ { "kind": "TypeNominal", @@ -293191,8 +295806,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293215,8 +295830,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293239,8 +295854,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293257,8 +295872,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293267,19 +295882,19 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "senderTokenAddress", + "printedName": "senderTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293296,14 +295911,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293320,14 +295935,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293344,8 +295959,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV06senderF7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293354,8 +295969,8 @@ }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "recipientTokenAddress", + "printedName": "recipientTokenAddress", "children": [ { "kind": "TypeNominal", @@ -293365,8 +295980,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293389,8 +296004,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293413,8 +296028,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293431,8 +296046,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV09recipientF7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293441,8 +296056,182 @@ }, { "kind": "Var", - "name": "unsignedTx", - "printedName": "unsignedTx", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV6amounts6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decimals", + "printedName": "decimals", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8decimalss6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -293452,8 +296241,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293476,8 +296265,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293500,8 +296289,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293518,8 +296307,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293539,8 +296439,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293562,8 +296462,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293586,8 +296486,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -293604,8 +296504,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -293619,14 +296519,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -293646,8 +296546,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293672,8 +296572,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -293695,8 +296595,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293721,8 +296621,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -293749,8 +296649,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -293780,8 +296680,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -293805,20 +296705,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_SigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -293840,8 +296740,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293859,8 +296759,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -293870,8 +296770,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV", - "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_TokenTransferV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -293924,32 +296824,111 @@ }, { "kind": "TypeDecl", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "TW_Solana_Proto_PreSigningOutput", + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "TW_Solana_Proto_CreateAndTransferToken", "children": [ { "kind": "Var", - "name": "signers", - "printedName": "signers", + "name": "recipientMainAddress", + "printedName": "recipientMainAddress", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV20recipientMainAddressSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenMintAddress", + "printedName": "tokenMintAddress", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -293966,22 +296945,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -293998,22 +296969,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[Foundation.Data]", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294030,8 +296993,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16tokenMintAddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294040,19 +297003,19 @@ }, { "kind": "Var", - "name": "data", - "printedName": "data", + "name": "recipientTokenAddress", + "printedName": "recipientTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294069,14 +297032,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294093,14 +297056,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294117,8 +297080,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV09recipientI7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294127,19 +297090,19 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "senderTokenAddress", + "printedName": "senderTokenAddress", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294156,14 +297119,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294180,14 +297143,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294204,8 +297167,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV06senderI7AddressSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294214,8 +297177,182 @@ }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV6amounts6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "decimals", + "printedName": "decimals", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8decimalss6UInt32VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "memo", + "printedName": "memo", "children": [ { "kind": "TypeNominal", @@ -294225,8 +297362,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294249,8 +297386,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294273,8 +297410,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294291,8 +297428,119 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV4memoSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "references", + "printedName": "references", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV10referencesSaySSGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294312,8 +297560,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -294335,8 +297583,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -294359,8 +297607,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -294377,8 +297625,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -294392,14 +297640,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -294419,8 +297667,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294445,8 +297693,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -294468,8 +297716,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294494,8 +297742,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -294522,8 +297770,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -294553,8 +297801,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -294578,20 +297826,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" }, { "kind": "TypeNominal", - "name": "TW_Solana_Proto_PreSigningOutput", - "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Func", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -294613,8 +297861,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -294632,8 +297880,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -294643,8 +297891,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV", - "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", + "mangledName": "$s10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -294695,25 +297943,15 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SolanaAddress", - "printedName": "SolanaAddress", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "TW_Solana_Proto_CreateNonceAccount", "children": [ { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -294723,14 +297961,16 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -294745,386 +297985,313 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.SolanaAddress?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SolanaAddress", - "printedName": "WalletCore.SolanaAddress", - "usr": "s:10WalletCore13SolanaAddressC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH0SSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "rent", + "printedName": "rent", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore13SolanaAddressC6stringACSgSS_tcfc", - "mangledName": "$s10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "defaultTokenAddress", - "printedName": "defaultTokenAddress(tokenMintAddress:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV4rents6UInt64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", - "mangledName": "$s10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore13SolanaAddressC", - "mangledName": "$s10WalletCore13SolanaAddressC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + ] }, { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StarkExMessageSigner", - "printedName": "StarkExMessageSigner", - "children": [ - { - "kind": "Function", - "name": "signMessage", - "printedName": "signMessage(privateKey:message:)", + "kind": "Var", + "name": "nonceAccountPrivateKey", + "printedName": "nonceAccountPrivateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Func", - "usr": "s:10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", - "mangledName": "$s10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "verifyMessage", - "printedName": "verifyMessage(pubKey:message:signature:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV05nonceH10PrivateKey10Foundation4DataVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", - "mangledName": "$s10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore20StarkExMessageSignerV", - "mangledName": "$s10WalletCore20StarkExMessageSignerV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StarkWare", - "printedName": "StarkWare", - "children": [ - { - "kind": "Function", - "name": "getStarkKeyFromSignature", - "printedName": "getStarkKeyFromSignature(derivationPath:signature:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" - }, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "DerivationPath", - "printedName": "WalletCore.DerivationPath", - "usr": "s:10WalletCore14DerivationPathC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", - "mangledName": "$s10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore9StarkWareV", - "mangledName": "$s10WalletCore9StarkWareV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "TW_Stellar_Proto_ClaimPredicate", - "children": [ - { - "kind": "Var", - "name": "predicateUnconditional", - "printedName": "predicateUnconditional", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "UNRECOGNIZED", - "printedName": "UNRECOGNIZED", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> (Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" ] }, { @@ -295134,49 +298301,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate?", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -295185,23 +298317,29 @@ }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -295210,51 +298348,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -295264,109 +298397,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, "isFromExtension": true, "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Func", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -295375,16 +298535,15 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, "isFromExtension": true, "accessorKind": "get" @@ -295392,43 +298551,41 @@ ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO", - "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "declKind": "Struct", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV", + "mangledName": "$s10WalletCore34TW_Solana_Proto_CreateNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { "kind": "Conformance", - "name": "Enum", - "printedName": "Enum", - "usr": "s:13SwiftProtobuf4EnumP", - "mangledName": "$s13SwiftProtobuf4EnumP" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -295443,55 +298600,18 @@ "printedName": "Equatable", "usr": "s:SQ", "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" } ] }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_Asset", - "printedName": "TW_Stellar_Proto_Asset", + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "TW_Solana_Proto_WithdrawNonceAccount", "children": [ { "kind": "Var", - "name": "issuer", - "printedName": "issuer", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -295501,8 +298621,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -295525,8 +298645,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295549,8 +298669,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295567,8 +298687,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV05nonceH0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295577,8 +298697,8 @@ }, { "kind": "Var", - "name": "alphanum4", - "printedName": "alphanum4", + "name": "recipient", + "printedName": "recipient", "children": [ { "kind": "TypeNominal", @@ -295588,14 +298708,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], "hasStorage": true, "accessors": [ @@ -295612,8 +298731,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295636,8 +298755,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295654,8 +298773,94 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9recipientSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV5values6UInt64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295675,8 +298880,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -295698,8 +298903,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -295722,8 +298927,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -295740,8 +298945,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -295755,14 +298960,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetVACycfc", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -295782,8 +298987,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295808,8 +299013,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -295831,8 +299036,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295857,8 +299062,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -295885,8 +299090,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -295916,8 +299121,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -295941,20 +299146,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -295976,8 +299181,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -295995,8 +299200,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296006,12 +299211,11 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV", - "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", + "mangledName": "$s10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -296060,13 +299264,13 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "TW_Stellar_Proto_OperationCreateAccount", + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "TW_Solana_Proto_AdvanceNonceAccount", "children": [ { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -296076,8 +299280,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296100,8 +299304,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296124,95 +299328,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296229,8 +299346,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV05nonceH0SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296250,8 +299367,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296273,8 +299390,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296297,8 +299414,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296315,8 +299432,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296330,14 +299447,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -296357,8 +299474,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296383,8 +299500,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -296406,8 +299523,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296432,8 +299549,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -296460,8 +299577,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -296491,8 +299608,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -296516,20 +299633,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Func", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -296551,8 +299668,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296570,8 +299687,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -296581,12 +299698,11 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", - "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", + "mangledName": "$s10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "conformances": [ { @@ -296635,24 +299751,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "TW_Stellar_Proto_OperationPayment", + "name": "TW_Solana_Proto_SigningInput", + "printedName": "TW_Solana_Proto_SigningInput", "children": [ { "kind": "Var", - "name": "destination", - "printedName": "destination", + "name": "privateKey", + "printedName": "privateKey", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296669,14 +299785,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296693,14 +299809,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296717,8 +299833,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296727,24 +299843,27 @@ }, { "kind": "Var", - "name": "asset", - "printedName": "asset", + "name": "recentBlockhash", + "printedName": "recentBlockhash", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296753,15 +299872,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -296776,15 +299896,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -296799,8 +299920,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15recentBlockhashSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296809,8 +299930,8 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", + "name": "v0Msg", + "printedName": "v0Msg", "children": [ { "kind": "TypeNominal", @@ -296820,13 +299941,15 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296841,50 +299964,79 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV5v0MsgSbvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" + ] }, { "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "transactionType", + "printedName": "transactionType", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -296901,14 +300053,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -296925,14 +300085,22 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -296949,8 +300117,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV15transactionTypeAC017OneOf_TransactionI0OSgvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -296959,26 +300127,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "transferTransaction", + "printedName": "transferTransaction", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -296987,16 +300152,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297011,16 +300175,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297035,60 +300198,33 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19transferTransactionAA0c1_d1_E9_TransferVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "delegateStakeTransaction", + "printedName": "delegateStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297097,47 +300233,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24delegateStakeTransactionAA0c1_d1_e9_DelegateI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "deactivateStakeTransaction", + "printedName": "deactivateStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297146,136 +300314,160 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV26deactivateStakeTransactionAA0c1_d1_e11_DeactivateI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "deactivateAllStakeTransaction", + "printedName": "deactivateAllStakeTransaction", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" } ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29deactivateAllStakeTransactionAA0c1_d1_e11_DeactivateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "withdrawTransaction", + "printedName": "withdrawTransaction", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -297284,99 +300476,78 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19withdrawTransactionAA0c1_d1_E14_WithdrawStakeVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV", - "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "TW_Stellar_Proto_OperationChangeTrust", - "children": [ { "kind": "Var", - "name": "asset", - "printedName": "asset", + "name": "withdrawAllTransaction", + "printedName": "withdrawAllTransaction", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -297386,14 +300557,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -297409,14 +300580,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -297432,8 +300603,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV22withdrawAllTransactionAA0c1_d1_e9_WithdrawI5StakeVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -297442,23 +300613,22 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", + "name": "createTokenAccountTransaction", + "printedName": "createTokenAccountTransaction", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -297468,64 +300638,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvg", "moduleName": "WalletCore", "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ + }, { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV29createTokenAccountTransactionAA0c1_d1_e7_CreateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" + ] }, { "kind": "Var", - "name": "validBefore", - "printedName": "validBefore", + "name": "tokenTransferTransaction", + "printedName": "tokenTransferTransaction", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297534,16 +300719,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297558,16 +300742,15 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297582,8 +300765,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV24tokenTransferTransactionAA0c1_d1_e6_TokenI0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -297592,26 +300775,23 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "createAndTransferTokenTransaction", + "printedName": "createAndTransferTokenTransaction", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297620,16 +300800,15 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -297644,16 +300823,15 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -297668,60 +300846,33 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV33createAndTransferTokenTransactionAA0c1_d1_e7_CreateijK0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "createNonceAccount", + "printedName": "createNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297730,47 +300881,79 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18createNonceAccountAA0c1_d1_e7_CreateiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "withdrawNonceAccount", + "printedName": "withdrawNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -297779,259 +300962,15 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", - "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "TW_Stellar_Proto_Claimant", - "children": [ - { - "kind": "Var", - "name": "account", - "printedName": "account", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -298046,16 +300985,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -298070,8 +301008,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV20withdrawNonceAccountAA0c1_d1_e9_WithdrawiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298080,27 +301018,23 @@ }, { "kind": "Var", - "name": "predicate", - "printedName": "predicate", + "name": "advanceNonceAccount", + "printedName": "advanceNonceAccount", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -298109,16 +301043,15 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -298133,16 +301066,15 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_ClaimPredicate", - "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", - "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -298157,8 +301089,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV19advanceNonceAccountAA0c1_d1_e8_AdvanceiJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298167,24 +301099,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "sender", + "printedName": "sender", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -298195,14 +301128,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298219,14 +301152,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298243,39 +301176,18 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV6senderSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "nonceAccount", + "printedName": "nonceAccount", "children": [ { "kind": "TypeNominal", @@ -298285,17 +301197,15 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -298311,298 +301221,10 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvg", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "children": [ - { - "kind": "Var", - "name": "asset", - "printedName": "asset", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", - "moduleName": "WalletCore", "accessorKind": "get" }, { @@ -298617,15 +301239,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Asset", - "printedName": "WalletCore.TW_Stellar_Proto_Asset", - "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -298640,8 +301263,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV12nonceAccountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298650,82 +301273,19 @@ }, { "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "amount", - "printedName": "amount", + "name": "feePayerPrivateKey", + "printedName": "feePayerPrivateKey", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298742,14 +301302,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298766,14 +301326,14 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298790,8 +301350,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV18feePayerPrivateKey10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298800,27 +301360,19 @@ }, { "kind": "Var", - "name": "claimants", - "printedName": "claimants", + "name": "feePayer", + "printedName": "feePayer", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298837,22 +301389,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298869,22 +301413,14 @@ }, { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_Claimant", - "printedName": "WalletCore.TW_Stellar_Proto_Claimant", - "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" - } - ], - "usr": "s:Sa" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298901,8 +301437,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8feePayerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298922,8 +301458,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -298945,8 +301481,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -298969,8 +301505,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -298987,8 +301523,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -298996,490 +301532,658 @@ ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "TypeDecl", + "name": "OneOf_TransactionType", + "printedName": "OneOf_TransactionType", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "transferTransaction", + "printedName": "transferTransaction", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_Transfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_Transfer", + "printedName": "WalletCore.TW_Solana_Proto_Transfer", + "usr": "s:10WalletCore24TW_Solana_Proto_TransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08transferJ0yAeA0c1_d1_E9_TransferVcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "delegateStakeTransaction", + "printedName": "delegateStakeTransaction", "children": [ { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DelegateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DelegateStake", + "printedName": "WalletCore.TW_Solana_Proto_DelegateStake", + "usr": "s:10WalletCore29TW_Solana_Proto_DelegateStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013delegateStakeJ0yAeA0c1_d1_e9_DelegateM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "deactivateStakeTransaction", + "printedName": "deactivateStakeTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DeactivateStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateStake", + "usr": "s:10WalletCore31TW_Solana_Proto_DeactivateStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO015deactivateStakeJ0yAeA0c1_d1_e11_DeactivateM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Var", + "name": "deactivateAllStakeTransaction", + "printedName": "deactivateAllStakeTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_DeactivateAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_DeactivateAllStake", + "printedName": "WalletCore.TW_Solana_Proto_DeactivateAllStake", + "usr": "s:10WalletCore34TW_Solana_Proto_DeactivateAllStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018deactivateAllStakeJ0yAeA0c1_d1_e11_DeactivatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "kind": "Var", + "name": "withdrawTransaction", + "printedName": "withdrawTransaction", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawStake", + "usr": "s:10WalletCore29TW_Solana_Proto_WithdrawStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO08withdrawJ0yAeA0c1_d1_E14_WithdrawStakeVcAEmF", + "moduleName": "WalletCore" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "withdrawAllTransaction", + "printedName": "withdrawAllTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawAllStake) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawAllStake", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawAllStake", + "usr": "s:10WalletCore32TW_Solana_Proto_WithdrawAllStakeV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", - "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "children": [ - { - "kind": "Var", - "name": "balanceID", - "printedName": "balanceID", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO011withdrawAllJ0yAeA0c1_d1_e9_WithdrawM5StakeVcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "createTokenAccountTransaction", + "printedName": "createTokenAccountTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateTokenAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateTokenAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateTokenAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateTokenAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO018createTokenAccountJ0yAeA0c1_d1_e7_CreatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "tokenTransferTransaction", + "printedName": "tokenTransferTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_TokenTransfer) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_TokenTransfer", + "printedName": "WalletCore.TW_Solana_Proto_TokenTransfer", + "usr": "s:10WalletCore29TW_Solana_Proto_TokenTransferV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO013tokenTransferJ0yAeA0c1_d1_e6_TokenM0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "createAndTransferTokenTransaction", + "printedName": "createAndTransferTokenTransaction", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateAndTransferToken) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateAndTransferToken", + "printedName": "WalletCore.TW_Solana_Proto_CreateAndTransferToken", + "usr": "s:10WalletCore38TW_Solana_Proto_CreateAndTransferTokenV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO022createAndTransferTokenJ0yAeA0c1_d1_e7_CreatemnO0VcAEmF", + "moduleName": "WalletCore" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "createNonceAccount", + "printedName": "createNonceAccount", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_CreateNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_CreateNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_CreateNonceAccount", + "usr": "s:10WalletCore34TW_Solana_Proto_CreateNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO18createNonceAccountyAeA0c1_d1_e7_CreatemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "withdrawNonceAccount", + "printedName": "withdrawNonceAccount", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_WithdrawNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_WithdrawNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_WithdrawNonceAccount", + "usr": "s:10WalletCore36TW_Solana_Proto_WithdrawNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO20withdrawNonceAccountyAeA0c1_d1_e9_WithdrawmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "advanceNonceAccount", + "printedName": "advanceNonceAccount", + "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type) -> (WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Solana_Proto_AdvanceNonceAccount) -> WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "TW_Solana_Proto_AdvanceNonceAccount", + "printedName": "WalletCore.TW_Solana_Proto_AdvanceNonceAccount", + "usr": "s:10WalletCore35TW_Solana_Proto_AdvanceNonceAccountV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + } + ] + } + ] } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "declKind": "EnumElement", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO19advanceNonceAccountyAeA0c1_d1_e8_AdvancemN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" + }, + { + "kind": "TypeNominal", + "name": "OneOf_TransactionType", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput.OneOf_TransactionType", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "declKind": "Func", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV21OneOf_TransactionTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, @@ -299490,14 +302194,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -299517,8 +302221,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299543,8 +302247,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -299566,8 +302270,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299592,8 +302296,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -299620,8 +302324,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -299651,8 +302355,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -299676,20 +302380,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "TW_Solana_Proto_SigningInput", + "printedName": "WalletCore.TW_Solana_Proto_SigningInput", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -299711,8 +302415,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -299730,8 +302434,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -299741,8 +302445,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", - "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "usr": "s:10WalletCore28TW_Solana_Proto_SigningInputV", + "mangledName": "$s10WalletCore28TW_Solana_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -299795,24 +302499,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "TW_Stellar_Proto_MemoVoid", + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "TW_Solana_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "encoded", + "printedName": "encoded", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -299829,14 +302533,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -299853,14 +302557,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -299877,59 +302581,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV7encodedSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -299939,46 +302620,84 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -299988,222 +302707,66 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" }, { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "TW_Stellar_Proto_MemoText", - "children": [ { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "unsignedTx", + "printedName": "unsignedTx", "children": [ { "kind": "TypeNominal", @@ -300213,8 +302776,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300237,8 +302800,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300261,8 +302824,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300279,8 +302842,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV10unsignedTxSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300300,8 +302863,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300323,8 +302886,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300347,8 +302910,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300365,8 +302928,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300380,14 +302943,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -300407,8 +302970,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300433,8 +302996,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -300456,8 +303019,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300482,8 +303045,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -300510,8 +303073,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -300541,8 +303104,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -300566,20 +303129,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "TW_Solana_Proto_SigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_SigningOutput", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -300601,8 +303164,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -300620,8 +303183,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -300631,8 +303194,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV", + "usr": "s:10WalletCore29TW_Solana_Proto_SigningOutputV", + "mangledName": "$s10WalletCore29TW_Solana_Proto_SigningOutputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -300685,24 +303248,32 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "TW_Stellar_Proto_MemoId", + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "TW_Solana_Proto_PreSigningOutput", "children": [ { "kind": "Var", - "name": "id", - "printedName": "id", + "name": "signers", + "printedName": "signers", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -300719,14 +303290,22 @@ "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300743,14 +303322,22 @@ }, { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300767,8 +303354,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV7signersSay10Foundation4DataVGvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -300777,24 +303364,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "data", + "printedName": "data", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -300805,14 +303393,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -300829,14 +303417,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -300853,59 +303441,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV4data10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -300915,282 +303480,77 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvs", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "accessorKind": "set" }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV5errorAA0c8_Common_e1_G5ErrorOvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV", - "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "TW_Stellar_Proto_MemoHash", - "children": [ { "kind": "Var", - "name": "hash", - "printedName": "hash", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -301207,14 +303567,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -301231,14 +303591,14 @@ }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -301255,8 +303615,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -301276,8 +303636,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -301299,8 +303659,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -301323,8 +303683,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -301341,8 +303701,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -301356,14 +303716,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -301383,8 +303743,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301409,8 +303769,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -301432,8 +303792,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301458,8 +303818,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -301486,8 +303846,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -301517,8 +303877,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -301542,20 +303902,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Solana_Proto_PreSigningOutput", + "printedName": "WalletCore.TW_Solana_Proto_PreSigningOutput", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -301577,8 +303937,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -301596,8 +303956,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -301607,8 +303967,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV", - "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV", + "usr": "s:10WalletCore32TW_Solana_Proto_PreSigningOutputV", + "mangledName": "$s10WalletCore32TW_Solana_Proto_PreSigningOutputV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -301659,34 +304019,42 @@ } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "TW_Stellar_Proto_SigningInput", + "name": "SolanaAddress", + "printedName": "SolanaAddress", "children": [ { "kind": "Var", - "name": "fee", - "printedName": "fee", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", + "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvp", + "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -301695,154 +304063,195 @@ "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", + "usr": "s:10WalletCore13SolanaAddressC11descriptionSSvg", + "mangledName": "$s10WalletCore13SolanaAddressC11descriptionSSvg", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.SolanaAddress?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SolanaAddress", + "printedName": "WalletCore.SolanaAddress", + "usr": "s:10WalletCore13SolanaAddressC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "mangledName": "$s10WalletCore13SolanaAddressC6stringACSgSS_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "sequence", - "printedName": "sequence", + "kind": "Function", + "name": "defaultTokenAddress", + "printedName": "defaultTokenAddress(tokenMintAddress:)", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", + "declKind": "Func", + "usr": "s:10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", + "mangledName": "$s10WalletCore13SolanaAddressC012defaultTokenD009tokenMintD0SSSgSS_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore13SolanaAddressC", + "mangledName": "$s10WalletCore13SolanaAddressC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Address", + "printedName": "Address", + "usr": "s:10WalletCore7AddressP", + "mangledName": "$s10WalletCore7AddressP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StarkExMessageSigner", + "printedName": "StarkExMessageSigner", + "children": [ + { + "kind": "Function", + "name": "signMessage", + "printedName": "signMessage(privateKey:message:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "mangledName": "$s10WalletCore20StarkExMessageSignerV04signE010privateKey7messageSSAA07PrivateI0C_SStFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "account", - "printedName": "account", + "kind": "Function", + "name": "verifyMessage", + "printedName": "verifyMessage(pubKey:message:signature:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "WalletCore.PublicKey", + "usr": "s:10WalletCore9PublicKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "String", @@ -301850,191 +304259,273 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", + "declKind": "Func", + "usr": "s:10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", + "mangledName": "$s10WalletCore20StarkExMessageSignerV06verifyE06pubKey7message9signatureSbAA06PublicI0C_S2StFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore20StarkExMessageSignerV", + "mangledName": "$s10WalletCore20StarkExMessageSignerV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StarkWare", + "printedName": "StarkWare", + "children": [ + { + "kind": "Function", + "name": "getStarkKeyFromSignature", + "printedName": "getStarkKeyFromSignature(derivationPath:signature:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "DerivationPath", + "printedName": "WalletCore.DerivationPath", + "usr": "s:10WalletCore14DerivationPathC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", + "mangledName": "$s10WalletCore9StarkWareV03getC16KeyFromSignature14derivationPath9signatureAA07PrivateF0CAA010DerivationJ0C_SStFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore9StarkWareV", + "mangledName": "$s10WalletCore9StarkWareV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SwiftProtobuf", + "printedName": "SwiftProtobuf", + "declKind": "Import", + "moduleName": "WalletCore" + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "TW_Stellar_Proto_ClaimPredicate", + "children": [ + { + "kind": "Var", + "name": "predicateUnconditional", + "printedName": "predicateUnconditional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO22predicateUnconditionalyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "UNRECOGNIZED", + "printedName": "UNRECOGNIZED", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_ClaimPredicate.Type) -> (Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int) -> WalletCore.TW_Stellar_Proto_ClaimPredicate", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO12UNRECOGNIZEDyACSicACmF", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateOACycfc", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueACSgSi_tcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" }, { "kind": "Var", - "name": "passphrase", - "printedName": "passphrase", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302043,92 +304534,51 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8rawValueSivg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "operationOneof", - "printedName": "operationOneof", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", "RawDocComment" ], + "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -302138,24 +304588,26 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" }, { @@ -302170,24 +304622,26 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", "children": [ { "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } ], - "usr": "s:Sq" + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvsZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "set" }, { @@ -302202,33 +304656,41 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO8allCasesSayACGvMZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "opCreateAccount", - "printedName": "opCreateAccount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302237,79 +304699,142 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "mangledName": "$s10WalletCore31TW_Stellar_Proto_ClaimPredicateO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Enum", + "printedName": "Enum", + "usr": "s:13SwiftProtobuf4EnumP", + "mangledName": "$s13SwiftProtobuf4EnumP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.TW_Stellar_Proto_ClaimPredicate]", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_Asset", + "printedName": "TW_Stellar_Proto_Asset", + "children": [ { "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", + "name": "issuer", + "printedName": "issuer", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302318,15 +304843,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302341,15 +304867,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302364,8 +304891,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV6issuerSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302374,23 +304901,27 @@ }, { "kind": "Var", - "name": "opChangeTrust", - "printedName": "opChangeTrust", + "name": "alphanum4", + "printedName": "alphanum4", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302399,15 +304930,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302422,15 +304954,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302445,8 +304978,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9alphanum4SSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302455,23 +304988,26 @@ }, { "kind": "Var", - "name": "opCreateClaimableBalance", - "printedName": "opCreateClaimableBalance", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302480,15 +305016,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302503,15 +305040,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302526,33 +305064,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "opClaimClaimableBalance", - "printedName": "opClaimClaimableBalance", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302561,83 +305126,282 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV", + "mangledName": "$s10WalletCore22TW_Stellar_Proto_AssetV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "TW_Stellar_Proto_OperationCreateAccount", + "children": [ { "kind": "Var", - "name": "memoTypeOneof", - "printedName": "memoTypeOneof", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -302654,22 +305418,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -302686,22 +305442,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -302718,8 +305466,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302728,23 +305476,27 @@ }, { "kind": "Var", - "name": "memoVoid", - "printedName": "memoVoid", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302753,15 +305505,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302776,15 +305529,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302799,8 +305553,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV6amounts5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -302809,23 +305563,26 @@ }, { "kind": "Var", - "name": "memoText", - "printedName": "memoText", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302834,15 +305591,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -302857,15 +305615,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -302880,33 +305639,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "memoID", - "printedName": "memoID", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302915,79 +305701,290 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "mangledName": "$s10WalletCore39TW_Stellar_Proto_OperationCreateAccountV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "TW_Stellar_Proto_OperationPayment", + "children": [ { "kind": "Var", - "name": "memoHash", - "printedName": "memoHash", + "name": "destination", + "printedName": "destination", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -302996,15 +305993,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -303019,15 +306017,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -303042,8 +306041,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV11destinationSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303052,22 +306051,23 @@ }, { "kind": "Var", - "name": "memoReturnHash", - "printedName": "memoReturnHash", + "name": "asset", + "printedName": "asset", "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -303077,14 +306077,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvg", "moduleName": "WalletCore", "accessorKind": "get" }, @@ -303100,14 +306100,14 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvs", "moduleName": "WalletCore", "accessorKind": "set" }, @@ -303123,8 +306123,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV5assetAA0c1_d1_E6_AssetVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303133,8 +306133,71 @@ }, { "kind": "Var", - "name": "timeBounds", - "printedName": "timeBounds", + "name": "hasAsset", + "printedName": "hasAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8hasAssetSbvg", + "moduleName": "WalletCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", @@ -303144,13 +306207,14 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -303167,8 +306231,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -303191,8 +306255,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -303209,8 +306273,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV6amounts5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303230,8 +306294,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -303253,8 +306317,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -303277,8 +306341,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -303295,8 +306359,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -303304,717 +306368,105 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_OperationOneof", - "printedName": "OneOf_OperationOneof", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "Var", - "name": "opCreateAccount", - "printedName": "opCreateAccount", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateAccount", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", - "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ { - "kind": "Var", - "name": "opPayment", - "printedName": "opPayment", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationPayment", - "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", - "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opChangeTrust", - "printedName": "opChangeTrust", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationChangeTrust", - "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", - "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opCreateClaimableBalance", - "printedName": "opCreateClaimableBalance", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", - "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "opClaimClaimableBalance", - "printedName": "opClaimClaimableBalance", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", - "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", - "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_OperationOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MemoTypeOneof", - "printedName": "OneOf_MemoTypeOneof", - "children": [ - { - "kind": "Var", - "name": "memoVoid", - "printedName": "memoVoid", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoVoid", - "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoText", - "printedName": "memoText", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoText", - "printedName": "WalletCore.TW_Stellar_Proto_MemoText", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoID", - "printedName": "memoID", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoId", - "printedName": "WalletCore.TW_Stellar_Proto_MemoId", - "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoHash", - "printedName": "memoHash", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "memoReturnHash", - "printedName": "memoReturnHash", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_MemoHash", - "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", - "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MemoTypeOneof", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -304024,8 +306476,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304052,8 +306504,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -304083,8 +306535,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -304108,20 +306560,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningInput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" } ], "declKind": "Func", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304143,8 +306595,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304162,8 +306614,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304173,8 +306625,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV", - "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV", + "mangledName": "$s10WalletCore33TW_Stellar_Proto_OperationPaymentV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -304227,32 +306679,29 @@ }, { "kind": "TypeDecl", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "TW_Stellar_Proto_SigningOutput", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "TW_Stellar_Proto_OperationChangeTrust", "children": [ { "kind": "Var", - "name": "signature", - "printedName": "signature", + "name": "asset", + "printedName": "asset", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -304261,16 +306710,15 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -304285,16 +306733,15 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -304309,8 +306756,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV5assetAA0c1_d1_E6_AssetVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304319,27 +306766,24 @@ }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "hasAsset", + "printedName": "hasAsset", "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl", "RawDocComment" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -304348,77 +306792,56 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8hasAssetSbvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Common_Proto_SigningError", - "printedName": "WalletCore.TW_Common_Proto_SigningError", - "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" } ] }, + { + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV10clearAssetyyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" + }, { "kind": "Var", - "name": "errorMessage", - "printedName": "errorMessage", + "name": "validBefore", + "printedName": "validBefore", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -304435,14 +306858,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -304459,14 +306882,14 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -304483,8 +306906,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV11validBefores5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304504,8 +306927,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -304527,8 +306950,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -304551,8 +306974,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -304569,8 +306992,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -304584,14 +307007,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -304611,8 +307034,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304637,8 +307060,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304660,8 +307083,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304686,8 +307109,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -304714,8 +307137,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -304745,8 +307168,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -304770,20 +307193,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" }, { "kind": "TypeNominal", - "name": "TW_Stellar_Proto_SigningOutput", - "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], "declKind": "Func", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -304805,8 +307228,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304824,8 +307247,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -304835,8 +307258,8 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV", - "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", + "mangledName": "$s10WalletCore37TW_Stellar_Proto_OperationChangeTrustV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", @@ -304889,244 +307312,315 @@ }, { "kind": "TypeDecl", - "name": "StellarMemoType", - "printedName": "StellarMemoType", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "TW_Stellar_Proto_Claimant", "children": [ { "kind": "Var", - "name": "none", - "printedName": "none", + "name": "account", + "printedName": "account", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV7accountSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4noneyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4noneyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "text", - "printedName": "text", + "name": "predicate", + "printedName": "predicate", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4textyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4textyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "id", - "printedName": "id", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "TW_Stellar_Proto_ClaimPredicate", + "printedName": "WalletCore.TW_Stellar_Proto_ClaimPredicate", + "usr": "s:10WalletCore31TW_Stellar_Proto_ClaimPredicateO" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO2idyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO2idyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "hash", - "printedName": "hash", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9predicateAA0c1_d1_E15_ClaimPredicateOvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO4hashyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO4hashyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "return", - "printedName": "return", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarMemoType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore15StellarMemoTypeO6returnyA2CmF", - "mangledName": "$s10WalletCore15StellarMemoTypeO6returnyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarMemoType?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305135,46 +307629,185 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "usr": "s:Sa" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivp", + "moduleName": "WalletCore", "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -305183,46 +307816,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore15StellarMemoTypeO", - "mangledName": "$s10WalletCore15StellarMemoTypeO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_ClaimantV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -305233,155 +307878,119 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarMemoType]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarMemoType", - "printedName": "WalletCore.StellarMemoType", - "usr": "s:10WalletCore15StellarMemoTypeO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, { "kind": "TypeDecl", - "name": "StellarPassphrase", - "printedName": "StellarPassphrase", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "TW_Stellar_Proto_OperationCreateClaimableBalance", "children": [ { "kind": "Var", - "name": "stellar", - "printedName": "stellar", + "name": "asset", + "printedName": "asset", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarPassphrase.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ] + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore17StellarPassphraseO7stellaryA2CmF", - "mangledName": "$s10WalletCore17StellarPassphraseO7stellaryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "kin", - "printedName": "kin", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarPassphrase.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ] + "name": "TW_Stellar_Proto_Asset", + "printedName": "WalletCore.TW_Stellar_Proto_Asset", + "usr": "s:10WalletCore22TW_Stellar_Proto_AssetV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV5assetAA0c1_d1_E6_AssetVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore17StellarPassphraseO3kinyA2CmF", - "mangledName": "$s10WalletCore17StellarPassphraseO3kinyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "hasAsset", + "printedName": "hasAsset", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvp", - "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -305391,69 +308000,64 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvg", - "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8hasAssetSbvg", "moduleName": "WalletCore", "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "Function", + "name": "clearAsset", + "printedName": "clearAsset()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarPassphrase?", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "declKind": "Func", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV10clearAssetyyF", "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" + "declAttributes": [ + "Mutating", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "Mutating" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "amount", + "printedName": "amount", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvp", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305462,46 +308066,93 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64Vvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV6amounts5Int64VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "claimants", + "printedName": "claimants", "children": [ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvp", "moduleName": "WalletCore", - "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305511,317 +308162,209 @@ { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvg", "moduleName": "WalletCore", - "static": true, "implicit": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore17StellarPassphraseO", - "mangledName": "$s10WalletCore17StellarPassphraseO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Array", - "printedName": "[WalletCore.StellarPassphrase]", + "printedName": "[WalletCore.TW_Stellar_Proto_Claimant]", "children": [ { "kind": "TypeNominal", - "name": "StellarPassphrase", - "printedName": "WalletCore.StellarPassphrase", - "usr": "s:10WalletCore17StellarPassphraseO" + "name": "TW_Stellar_Proto_Claimant", + "printedName": "WalletCore.TW_Stellar_Proto_Claimant", + "usr": "s:10WalletCore25TW_Stellar_Proto_ClaimantV" } ], "usr": "s:Sa" } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StellarVersionByte", - "printedName": "StellarVersionByte", - "children": [ - { - "kind": "Var", - "name": "accountID", - "printedName": "accountID", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9claimantsSayAA0c1_d1_E9_ClaimantVGvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO9accountIDyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO9accountIDyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Var", - "name": "seed", - "printedName": "seed", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO4seedyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO4seedyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "preAuthTX", - "printedName": "preAuthTX", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "sha256Hash", - "printedName": "sha256Hash", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StellarVersionByte.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore18StellarVersionByteO10sha256HashyA2CmF", - "mangledName": "$s10WalletCore18StellarVersionByteO10sha256HashyA2CmF", - "moduleName": "WalletCore" + ] }, { "kind": "Constructor", "name": "init", - "printedName": "init(rawValue:)", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StellarVersionByte?", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceVACycfc", "moduleName": "WalletCore", - "implicit": true, + "declAttributes": [ + "AccessControl" + ], "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305830,46 +308373,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", - "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -305878,517 +308422,327 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore18StellarVersionByteO", - "mangledName": "$s10WalletCore18StellarVersionByteO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt16", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt16", - "printedName": "Swift.UInt16", - "usr": "s:s6UInt16V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StellarVersionByte]", - "children": [ - { - "kind": "TypeNominal", - "name": "StellarVersionByte", - "printedName": "WalletCore.StellarVersionByte", - "usr": "s:10WalletCore18StellarVersionByteO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "StoredKey", - "printedName": "StoredKey", - "children": [ { "kind": "Function", - "name": "load", - "printedName": "load(path:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", - "mangledName": "$s10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Mutating", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "importPrivateKey", - "printedName": "importPrivateKey(privateKey:name:password:coin:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", - "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", - "static": true, + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "importPrivateKeyWithEncryption", - "printedName": "importPrivateKeyWithEncryption(privateKey:name:password:coin:encryption:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" }, { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", - "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "importHDWallet", - "printedName": "importHDWallet(mnemonic:name:password:coin:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", - "mangledName": "$s10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "declKind": "Var", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "importHDWalletWithEncryption", - "printedName": "importHDWalletWithEncryption(mnemonic:name:password:coin:encryption:)", - "children": [ + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", + "mangledName": "$s10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "children": [ + { + "kind": "Var", + "name": "balanceID", + "printedName": "balanceID", + "children": [ { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", - "mangledName": "$s10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "declKind": "Var", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "importJSON", - "printedName": "importJSON(json:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKey?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", - "mangledName": "$s10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "identifier", - "printedName": "identifier", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvp", - "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvg", - "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9balanceID10Foundation4DataVvM", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "name", - "printedName": "name", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC4nameSSvp", - "mangledName": "$s10WalletCore9StoredKeyC4nameSSvp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306397,43 +308751,108 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC4nameSSvg", - "mangledName": "$s10WalletCore9StoredKeyC4nameSSvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "isMnemonic", - "printedName": "isMnemonic", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvp", - "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306442,43 +308861,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvg", - "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV16protoMessageNameSSvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { "kind": "Var", - "name": "accountCount", - "printedName": "accountCount", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC12accountCountSivp", - "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivp", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -306487,476 +308910,331 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC12accountCountSivg", - "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivg", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Var", - "name": "encryptionParameters", - "printedName": "encryptionParameters", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Var", - "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvp", - "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvg", - "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvg", - "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryptionLevel:)", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ + "Mutating", "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryptionLevel:encryption:)", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:)", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "declKind": "Func", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(name:password:encryption:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "StoredKey", - "printedName": "WalletCore.StoredKey", - "usr": "s:10WalletCore9StoredKeyC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", - "mangledName": "$s10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "declKind": "Var", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "account", - "printedName": "account(index:)", - "children": [ + "implicit": true, + "isFromExtension": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "mangledName": "$s10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "TW_Stellar_Proto_MemoVoid", + "children": [ + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", - "mangledName": "$s10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "accountForCoin", - "printedName": "accountForCoin(coin:wallet:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", - "mangledName": "$s10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "accountForCoinDerivation", - "printedName": "accountForCoinDerivation(coin:derivation:wallet:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.Account?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Account", - "printedName": "WalletCore.Account", - "usr": "s:10WalletCore7AccountC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" + "name": "Void", + "printedName": "()" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", - "mangledName": "$s10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + ] }, { - "kind": "Function", - "name": "addAccountDerivation", - "printedName": "addAccountDerivation(address:coin:derivation:derivationPath:publicKey:extendedPublicKey:)", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", - "mangledName": "$s10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidVACycfc", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "NonMutating" + "init_kind": "Designated" }, { - "kind": "Function", - "name": "addAccount", - "printedName": "addAccount(address:coin:derivationPath:publicKey:extendedPublicKey:)", + "kind": "Var", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeNominal", "name": "String", @@ -306964,49 +309242,96 @@ "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", - "mangledName": "$s10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV16protoMessageNameSSvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { - "kind": "Function", - "name": "removeAccountForCoin", - "printedName": "removeAccountForCoin(coin:)", + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", - "mangledName": "$s10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] }, { "kind": "Function", - "name": "removeAccountForCoinDerivation", - "printedName": "removeAccountForCoinDerivation(coin:derivation:)", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { "kind": "TypeNominal", @@ -307015,32 +309340,29 @@ }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "Derivation", - "printedName": "WalletCore.Derivation", - "usr": "s:10WalletCore10DerivationO" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", - "mangledName": "$s10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "Mutating", + "AccessControl" ], - "funcSelfKind": "NonMutating" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { "kind": "Function", - "name": "removeAccountForCoinDerivationPath", - "printedName": "removeAccountForCoinDerivationPath(coin:derivationPath:)", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { "kind": "TypeNominal", @@ -307049,32 +309371,28 @@ }, { "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", - "mangledName": "$s10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "store", - "printedName": "store(path:)", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", @@ -307084,68 +309402,156 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC5store4pathSbSS_tF", - "mangledName": "$s10WalletCore9StoredKeyC5store4pathSbSS_tF", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "AccessControl" ], + "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Function", - "name": "decryptPrivateKey", - "printedName": "decryptPrivateKey(password:)", + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], - "usr": "s:Sq" - }, + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV9hashValueSivg", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoVoidV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "TW_Stellar_Proto_MemoText", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", - "mangledName": "$s10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", + "HasInitialValue", + "HasStorage", "AccessControl", "RawDocComment" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decryptMnemonic", - "printedName": "decryptMnemonic(password:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -307154,348 +309560,189 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "privateKey", - "printedName": "privateKey(coin:password:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.PrivateKey?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "PrivateKey", - "printedName": "WalletCore.PrivateKey", - "usr": "s:10WalletCore10PrivateKeyC" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "CoinType", - "printedName": "WalletCore.CoinType", - "usr": "s:10WalletCore8CoinTypeO" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV4textSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "unknownFields", + "printedName": "unknownFields", + "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", - "mangledName": "$s10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "HasInitialValue", + "HasStorage", + "AccessControl" ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "wallet", - "printedName": "wallet(password:)", - "children": [ + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.HDWallet?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "HDWallet", - "printedName": "WalletCore.HDWallet", - "usr": "s:10WalletCore8HDWalletC" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "exportJSON", - "printedName": "exportJSON()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", - "mangledName": "$s10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "fixAddresses", - "printedName": "fixAddresses(password:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", - "mangledName": "$s10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:10WalletCore9StoredKeyC", - "mangledName": "$s10WalletCore9StoredKeyC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "StoredKeyEncryption", - "printedName": "StoredKeyEncryption", - "children": [ - { - "kind": "Var", - "name": "aes128Ctr", - "printedName": "aes128Ctr", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "aes128Cbc", - "printedName": "aes128Cbc", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", - "moduleName": "WalletCore" + ] }, { - "kind": "Var", - "name": "aes192Ctr", - "printedName": "aes192Ctr", + "kind": "Constructor", + "name": "init", + "printedName": "init()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "aes256Ctr", - "printedName": "aes256Ctr", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryption.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ] - } - ] - } + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", - "moduleName": "WalletCore" + "init_kind": "Designated" }, { "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvpZ", "moduleName": "WalletCore", - "implicit": true, + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -307504,79 +309751,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKeyEncryption?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", - "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" - }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Var", - "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, - "implicit": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -307585,359 +309800,136 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore19StoredKeyEncryptionO", - "mangledName": "$s10WalletCore19StoredKeyEncryptionO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "UInt32", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryption]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryption", - "printedName": "WalletCore.StoredKeyEncryption", - "usr": "s:10WalletCore19StoredKeyEncryptionO" - } - ], - "usr": "s:Sa" - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "StoredKeyEncryptionLevel", - "printedName": "StoredKeyEncryptionLevel", - "children": [ - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", - "moduleName": "WalletCore" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" }, { - "kind": "Var", - "name": "minimal", - "printedName": "minimal", + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "weak", - "printedName": "weak", - "children": [ + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "standard", - "printedName": "standard", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ] - } - ] - } + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" ], - "declKind": "EnumElement", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", - "moduleName": "WalletCore" + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", - "moduleName": "WalletCore", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.StoredKeyEncryptionLevel?", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" }, { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", - "implicit": true, - "init_kind": "Designated" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "allCases", - "printedName": "allCases", + "name": "hashValue", + "printedName": "hashValue", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivp", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -307946,46 +309938,58 @@ "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV9hashValueSivg", "moduleName": "WalletCore", - "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Enum", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO", - "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO", + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoTextV", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], - "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { "kind": "Conformance", @@ -307996,182 +310000,33 @@ }, { "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.StoredKeyEncryptionLevel]", - "children": [ - { - "kind": "TypeNominal", - "name": "StoredKeyEncryptionLevel", - "printedName": "WalletCore.StoredKeyEncryptionLevel", - "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "SwiftProtobuf", - "printedName": "SwiftProtobuf", - "declKind": "Import", - "moduleName": "WalletCore" - }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Era", - "printedName": "TW_Substrate_Proto_Era", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "TW_Stellar_Proto_MemoId", "children": [ { "kind": "Var", - "name": "blockNumber", - "printedName": "blockNumber", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64VvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV11blockNumbers6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "period", - "printedName": "period", + "name": "id", + "printedName": "id", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308188,14 +310043,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308212,14 +310067,14 @@ }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64Vvs", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64Vvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308236,8 +310091,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64VvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV6periods6UInt64VvM", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2ids5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308257,8 +310112,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308280,8 +310135,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308304,8 +310159,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308322,8 +310177,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308337,14 +310192,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraVACycfc", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraVACycfc", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -308364,8 +310219,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308390,8 +310245,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -308413,8 +310268,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308439,8 +310294,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -308467,8 +310322,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -308498,8 +310353,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -308523,20 +310378,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], "declKind": "Func", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -308558,8 +310413,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV9hashValueSivp", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV9hashValueSivp", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -308577,8 +310432,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV9hashValueSivg", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV9hashValueSivg", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -308588,11 +310443,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV", - "mangledName": "$s10WalletCore22TW_Substrate_Proto_EraV", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV", + "mangledName": "$s10WalletCore23TW_Stellar_Proto_MemoIdV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -308641,32 +310497,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Balance", - "printedName": "TW_Substrate_Proto_Balance", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "TW_Stellar_Proto_MemoHash", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "hash", + "printedName": "hash", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -308683,22 +310531,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -308715,22 +310555,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -308747,8 +310579,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV4hash10Foundation4DataVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -308757,23 +310589,26 @@ }, { "kind": "Var", - "name": "transfer", - "printedName": "transfer", + "name": "unknownFields", + "printedName": "unknownFields", "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308782,15 +310617,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -308805,15 +310641,16 @@ }, { "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" + "name": "UnknownStorage", + "printedName": "SwiftProtobuf.UnknownStorage", + "usr": "s:13SwiftProtobuf14UnknownStorageV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -308828,33 +310665,60 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8transferAC8TransferVvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashVACycfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, { "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", + "name": "protoMessageName", + "printedName": "protoMessageName", "children": [ { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvp", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvpZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308863,79 +310727,290 @@ "children": [ { "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvg", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV16protoMessageNameSSvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "_protobuf_nameMap", + "printedName": "_protobuf_nameMap", + "children": [ + { + "kind": "TypeNominal", + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" + "name": "_NameMap", + "printedName": "SwiftProtobuf._NameMap", + "usr": "s:13SwiftProtobuf8_NameMapV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0Vvs", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", - "accessorKind": "set" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "decodeMessage", + "printedName": "decodeMessage(decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "traverse", + "printedName": "traverse(visitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0", + "paramValueOwnership": "InOut" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "moduleName": "WalletCore", + "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV2eeoiySbAC_ACtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivp", + "moduleName": "WalletCore", + "implicit": true, + "isFromExtension": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13batchTransferAC05BatchH0VvM", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "isFromExtension": true, + "accessorKind": "get" } ] + } + ], + "declKind": "Struct", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV", + "mangledName": "$s10WalletCore25TW_Stellar_Proto_MemoHashV", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Message", + "printedName": "Message", + "usr": "s:13SwiftProtobuf7MessageP", + "mangledName": "$s13SwiftProtobuf7MessageP" + }, + { + "kind": "Conformance", + "name": "_MessageImplementationBase", + "printedName": "_MessageImplementationBase", + "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", + "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" }, + { + "kind": "Conformance", + "name": "_ProtoNameProviding", + "printedName": "_ProtoNameProviding", + "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", + "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "TW_Stellar_Proto_SigningInput", + "children": [ { "kind": "Var", - "name": "assetTransfer", - "printedName": "assetTransfer", + "name": "fee", + "printedName": "fee", "children": [ { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -308944,15 +311019,16 @@ "children": [ { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -308967,15 +311043,16 @@ }, { "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -308990,8 +311067,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13assetTransferAC05AssetH0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV3fees5Int32VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309000,23 +311077,27 @@ }, { "kind": "Var", - "name": "batchAssetTransfer", - "printedName": "batchAssetTransfer", + "name": "sequence", + "printedName": "sequence", "children": [ { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -309025,15 +311106,16 @@ "children": [ { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -309048,15 +311130,16 @@ }, { "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -309071,8 +311154,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18batchAssetTransferAC05BatchhI0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8sequences5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309081,24 +311164,25 @@ }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "account", + "printedName": "account", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], "hasStorage": true, "accessors": [ @@ -309109,14 +311193,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -309133,14 +311217,14 @@ }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -309157,8 +311241,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV7accountSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -309166,528 +311250,33 @@ ] }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Var", + "name": "privateKey", + "printedName": "privateKey", "children": [ { - "kind": "Var", - "name": "transfer", - "printedName": "transfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.Transfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.Transfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO8transferyAeC8TransferVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "batchTransfer", - "printedName": "batchTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13batchTransferyAeC05BatchL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "assetTransfer", - "printedName": "assetTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO13assetTransferyAeC05AssetL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "batchAssetTransfer", - "printedName": "batchAssetTransfer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO18batchAssetTransferyAeC05BatchlM0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Enum", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18OneOf_MessageOneofO", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Transfer", - "printedName": "Transfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, + "hasStorage": true, + "accessors": [ { - "kind": "Var", - "name": "value", - "printedName": "value", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -309696,5561 +311285,110 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "memo", - "printedName": "memo", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvg", "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV4memoSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - }, - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8TransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchTransfer", - "printedName": "BatchTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.Transfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "Transfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.Transfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8TransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9transfersSayAC0H0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13BatchTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AssetTransfer", - "printedName": "AssetTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "toAddress", - "printedName": "toAddress", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9toAddressSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "value", - "printedName": "value", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV5value10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "assetID", - "printedName": "assetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV7assetIDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "feeAssetID", - "printedName": "feeAssetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV03feeG2IDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - }, - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "BatchAssetTransfer", - "printedName": "BatchAssetTransfer", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "feeAssetID", - "printedName": "feeAssetID", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV03feeH2IDs6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "transfers", - "printedName": "transfers", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[WalletCore.TW_Substrate_Proto_Balance.AssetTransfer]", - "children": [ - { - "kind": "TypeNominal", - "name": "AssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.AssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13AssetTransferV" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9transfersSayAC0hI0VGvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferVAEycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - }, - { - "kind": "TypeNominal", - "name": "BatchAssetTransfer", - "printedName": "WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV18BatchAssetTransferV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceVACycfc", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivp", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivg", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV", - "mangledName": "$s10WalletCore26TW_Substrate_Proto_BalanceV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "TW_Substrate_Proto_Authorization", - "children": [ - { - "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12messageOneofAC013OneOf_MessageH0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "joinIdentity", - "printedName": "joinIdentity", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12joinIdentityAC04JoinH0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "joinIdentity", - "printedName": "joinIdentity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO12joinIdentityyAeC04JoinL0VcAEmF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO12joinIdentityyAeC04JoinL0VcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "JoinIdentity", - "printedName": "JoinIdentity", - "children": [ - { - "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "target", - "printedName": "target", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6targetSSvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV4dataAE8AuthDataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasData", - "printedName": "hasData", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV7hasDataSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearData", - "printedName": "clearData()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9clearDatayyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9clearDatayyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "expiry", - "printedName": "expiry", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV6expirys6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DataMessage", - "printedName": "DataMessage", - "children": [ - { - "kind": "Var", - "name": "data", - "printedName": "data", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0VvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV4data10Foundation0I0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageVAGycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageVAGycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV05protoJ4NameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV06decodeJ07decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV2eeoiySbAG_AGtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV2eeoiySbAG_AGtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AuthData", - "printedName": "AuthData", - "children": [ - { - "kind": "Var", - "name": "asset", - "printedName": "asset", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV5assetAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasAsset", - "printedName": "hasAsset", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8hasAssetSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearAsset", - "printedName": "clearAsset()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV10clearAssetyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV10clearAssetyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "extrinsic", - "printedName": "extrinsic", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9extrinsicAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasExtrinsic", - "printedName": "hasExtrinsic", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasExtrinsicSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearExtrinsic", - "printedName": "clearExtrinsic()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearExtrinsicyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearExtrinsicyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "portfolio", - "printedName": "portfolio", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "DataMessage", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV11DataMessageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9portfolioAE0J7MessageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "hasPortfolio", - "printedName": "hasPortfolio", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV12hasPortfolioSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "clearPortfolio", - "printedName": "clearPortfolio()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearPortfolioyyF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV14clearPortfolioyyF", - "moduleName": "WalletCore", - "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "Mutating" - }, - { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataVAGycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataVAGycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV17_protobuf_nameMap13SwiftProtobuf05_NameM0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - }, - { - "kind": "TypeNominal", - "name": "AuthData", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV2eeoiySbAG_AGtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV2eeoiySbAG_AGtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivp", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8AuthDataV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityVAEycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityVAEycfc", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10privateKey10Foundation4DataVvM", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "passphrase", + "printedName": "passphrase", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } ], - "init_kind": "Designated" + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "String", @@ -315258,127 +311396,186 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvpZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10passphraseSSvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "operationOneof", + "printedName": "operationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvp", + "moduleName": "WalletCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvg", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "get" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof?", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV17_protobuf_nameMap13SwiftProtobuf05_NameK0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14operationOneofAC015OneOf_OperationI0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opCreateAccount", + "printedName": "opCreateAccount", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvg", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessorKind": "get" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", @@ -315387,198 +311584,391 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0Vvs", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV15opCreateAccountAA0c1_d1_e10_OperationiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "JoinIdentity", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV" + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV2eeoiySbAE_AEtFZ", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0Vvs", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "accessorKind": "set" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivp", + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9opPaymentAA0c1_d1_e10_OperationI0VvM", "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opChangeTrust", + "printedName": "opChangeTrust", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" } ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV12JoinIdentityV", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "conformances": [ + "accessors": [ { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13opChangeTrustAA0c1_d1_e10_OperationiJ0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "opCreateClaimableBalance", + "printedName": "opCreateClaimableBalance", + "children": [ { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV24opCreateClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "opClaimClaimableBalance", + "printedName": "opClaimClaimableBalance", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationVACycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationVACycfc", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvp", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" ], - "init_kind": "Designated" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV23opClaimClaimableBalanceAA0c1_d1_e10_OperationijK0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "memoTypeOneof", + "printedName": "memoTypeOneof", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", - "AccessControl" + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -315588,47 +311978,97 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof?", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvs", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13memoTypeOneofAC010OneOf_MemoiJ0OSgvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "memoVoid", + "printedName": "memoVoid", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315637,136 +312077,241 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvg", "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoVoidAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "kind": "Var", + "name": "memoText", + "printedName": "memoText", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", "declAttributes": [ - "Mutating", "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvg", + "moduleName": "WalletCore", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoTextAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" + } + ] }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "memoID", + "printedName": "memoID", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "declKind": "Var", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvp", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ "AccessControl" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ + "accessors": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvg", + "moduleName": "WalletCore", + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvs", + "moduleName": "WalletCore", + "accessorKind": "set" }, { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV6memoIDAA0c1_d1_E7_MemoIdVvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + ] }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "memoHash", + "printedName": "memoHash", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvp", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "AccessControl" + ], "accessors": [ { "kind": "Accessor", @@ -315775,110 +312320,79 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV9hashValueSivg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvg", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0Vvs", + "moduleName": "WalletCore", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8memoHashAA0c1_d1_e5_MemoI0VvM", + "moduleName": "WalletCore", + "implicit": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_AuthorizationV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_Identity", - "printedName": "TW_Substrate_Proto_Identity", - "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "memoReturnHash", + "printedName": "memoReturnHash", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvp", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315887,24 +312401,15 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvg", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "get" }, { @@ -315919,24 +312424,15 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0Vvs", "moduleName": "WalletCore", - "implicit": true, "accessorKind": "set" }, { @@ -315951,8 +312447,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV12messageOneofAC013OneOf_MessageH0OSgvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV14memoReturnHashAA0c1_d1_e5_MemoJ0VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -315961,23 +312457,26 @@ }, { "kind": "Var", - "name": "joinIdentityAsKey", - "printedName": "joinIdentityAsKey", + "name": "timeBounds", + "printedName": "timeBounds", "children": [ { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvp", "moduleName": "WalletCore", "declAttributes": [ + "HasInitialValue", + "HasStorage", "AccessControl" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -315986,15 +312485,16 @@ "children": [ { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -316009,15 +312509,16 @@ }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0Vvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64Vvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -316032,8 +312533,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04joinF5AsKeyAC04JoinfhI0VvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV10timeBoundss5Int64VvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -316053,8 +312554,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -316076,8 +312577,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -316100,8 +312601,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -316118,8 +312619,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -316128,48 +312629,248 @@ }, { "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "name": "OneOf_OperationOneof", + "printedName": "OneOf_OperationOneof", "children": [ { "kind": "Var", - "name": "joinIdentityAsKey", - "printedName": "joinIdentityAsKey", + "name": "opCreateAccount", + "printedName": "opCreateAccount", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateAccount) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "TW_Stellar_Proto_OperationCreateAccount", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateAccount", + "usr": "s:10WalletCore39TW_Stellar_Proto_OperationCreateAccountV" } ] }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof.Type", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO15opCreateAccountyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opPayment", + "printedName": "opPayment", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationPayment) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationPayment", + "printedName": "WalletCore.TW_Stellar_Proto_OperationPayment", + "usr": "s:10WalletCore33TW_Stellar_Proto_OperationPaymentV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO9opPaymentyAeA0c1_d1_e1_jM0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opChangeTrust", + "printedName": "opChangeTrust", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationChangeTrust) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationChangeTrust", + "printedName": "WalletCore.TW_Stellar_Proto_OperationChangeTrust", + "usr": "s:10WalletCore37TW_Stellar_Proto_OperationChangeTrustV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO13opChangeTrustyAeA0c1_d1_e1_jmN0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opCreateClaimableBalance", + "printedName": "opCreateClaimableBalance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationCreateClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationCreateClaimableBalance", + "usr": "s:10WalletCore48TW_Stellar_Proto_OperationCreateClaimableBalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO24opCreateClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "opClaimClaimableBalance", + "printedName": "opClaimClaimableBalance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type) -> (WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_OperationClaimClaimableBalance", + "printedName": "WalletCore.TW_Stellar_Proto_OperationClaimClaimableBalance", + "usr": "s:10WalletCore47TW_Stellar_Proto_OperationClaimClaimableBalanceV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ] } @@ -316177,8 +312878,8 @@ } ], "declKind": "EnumElement", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO04joinF5AsKeyyAeC04JoinflM0VcAEmF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO23opClaimClaimableBalanceyAeA0c1_d1_e1_jmnO0VcAEmF", "moduleName": "WalletCore" }, { @@ -316194,20 +312895,20 @@ }, { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" }, { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO" + "name": "OneOf_OperationOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_OperationOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -316215,11 +312916,12 @@ } ], "declKind": "Enum", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV18OneOf_MessageOneofO", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV20OneOf_OperationOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -316233,533 +312935,258 @@ }, { "kind": "TypeDecl", - "name": "JoinIdentityAsKey", - "printedName": "JoinIdentityAsKey", + "name": "OneOf_MemoTypeOneof", + "printedName": "OneOf_MemoTypeOneof", "children": [ { "kind": "Var", - "name": "moduleIndex", - "printedName": "moduleIndex", + "name": "memoVoid", + "printedName": "memoVoid", "children": [ { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoVoid) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoVoid", + "printedName": "WalletCore.TW_Stellar_Proto_MemoVoid", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoVoidV" + } + ] }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11moduleIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "methodIndex", - "printedName": "methodIndex", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV11methodIndexs5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoVoidyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "authID", - "printedName": "authID", + "name": "memoText", + "printedName": "memoText", "children": [ { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoText) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoText", + "printedName": "WalletCore.TW_Stellar_Proto_MemoText", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoTextV" + } + ] }, { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64Vvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV6authIDs6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoTextyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "memoID", + "printedName": "memoID", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoId) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoId", + "printedName": "WalletCore.TW_Stellar_Proto_MemoId", + "usr": "s:10WalletCore23TW_Stellar_Proto_MemoIdV" + } + ] }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyVAEycfc", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyVAEycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO6memoIDyAeA0c1_d1_e1_J2IdVcAEmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "memoHash", + "printedName": "memoHash", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ] + }, { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV17_protobuf_nameMap13SwiftProtobuf05_NameL0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO8memoHashyAeA0c1_d1_e1_jN0VcAEmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "kind": "Var", + "name": "memoReturnHash", + "printedName": "memoReturnHash", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type) -> (WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.TW_Stellar_Proto_MemoHash) -> WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + }, + { + "kind": "TypeNominal", + "name": "TW_Stellar_Proto_MemoHash", + "printedName": "WalletCore.TW_Stellar_Proto_MemoHash", + "usr": "s:10WalletCore25TW_Stellar_Proto_MemoHashV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO14memoReturnHashyAeA0c1_d1_e1_jO0VcAEmF", + "moduleName": "WalletCore" }, { "kind": "Function", @@ -316774,113 +313201,35 @@ }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" }, { "kind": "TypeNominal", - "name": "JoinIdentityAsKey", - "printedName": "WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV" + "name": "OneOf_MemoTypeOneof", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput.OneOf_MemoTypeOneof", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV2eeoiySbAE_AEtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO2eeoiySbAE_AEtFZ", "moduleName": "WalletCore", "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivp", - "moduleName": "WalletCore", "implicit": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" } ], - "declKind": "Struct", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV04JoinF5AsKeyV", + "declKind": "Enum", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV19OneOf_MemoTypeOneofO", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, { "kind": "Conformance", "name": "Equatable", @@ -316897,14 +313246,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityVACycfc", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityVACycfc", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -316924,8 +313273,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -316950,8 +313299,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -316973,8 +313322,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvpZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -316999,8 +313348,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV17_protobuf_nameMap13SwiftProtobuf05_NameI0VvgZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317027,8 +313376,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -317058,8 +313407,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -317083,20 +313432,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "TW_Stellar_Proto_SigningInput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningInput", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV" } ], "declKind": "Func", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317118,8 +313467,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivp", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivp", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317137,8 +313486,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivg", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV9hashValueSivg", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317148,11 +313497,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV", - "mangledName": "$s10WalletCore27TW_Substrate_Proto_IdentityV", + "usr": "s:10WalletCore29TW_Stellar_Proto_SigningInputV", + "mangledName": "$s10WalletCore29TW_Stellar_Proto_SigningInputV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -317201,32 +313551,24 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "TW_Substrate_Proto_PolymeshCall", + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "TW_Stellar_Proto_SigningOutput", "children": [ { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "signature", + "printedName": "signature", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -317243,22 +313585,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -317275,22 +313609,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -317307,8 +313633,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV12messageOneofAC013OneOf_MessageI0OSgvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9signatureSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317317,23 +313643,27 @@ }, { "kind": "Var", - "name": "authorizationCall", - "printedName": "authorizationCall", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -317342,15 +313672,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -317365,15 +313696,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" + "name": "TW_Common_Proto_SigningError", + "printedName": "WalletCore.TW_Common_Proto_SigningError", + "usr": "s:10WalletCore28TW_Common_Proto_SigningErrorO" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -317388,8 +313720,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV013authorizationG0AA0c1_d1_E14_AuthorizationVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV5errorAA0c8_Common_e1_F5ErrorOvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317398,23 +313730,27 @@ }, { "kind": "Var", - "name": "identityCall", - "printedName": "identityCall", + "name": "errorMessage", + "printedName": "errorMessage", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -317423,15 +313759,16 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" }, { @@ -317446,15 +313783,16 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvs", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "set" }, { @@ -317469,8 +313807,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV08identityG0AA0c1_d1_E9_IdentityVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV12errorMessageSSvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" @@ -317490,8 +313828,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", "moduleName": "WalletCore", "declAttributes": [ "HasInitialValue", @@ -317513,8 +313851,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", "moduleName": "WalletCore", "implicit": true, "accessorKind": "get" @@ -317537,8 +313875,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", "moduleName": "WalletCore", "implicit": true, "accessorKind": "set" @@ -317555,169 +313893,14 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", "moduleName": "WalletCore", "implicit": true, "accessorKind": "_modify" } ] }, - { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", - "children": [ - { - "kind": "Var", - "name": "authorizationCall", - "printedName": "authorizationCall", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Authorization) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Authorization) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Authorization", - "printedName": "WalletCore.TW_Substrate_Proto_Authorization", - "usr": "s:10WalletCore32TW_Substrate_Proto_AuthorizationV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO013authorizationG0yAeA0c1_d1_E14_AuthorizationVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO013authorizationG0yAeA0c1_d1_E14_AuthorizationVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Var", - "name": "identityCall", - "printedName": "identityCall", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Identity) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Identity) -> WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Identity", - "printedName": "WalletCore.TW_Substrate_Proto_Identity", - "usr": "s:10WalletCore27TW_Substrate_Proto_IdentityV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO08identityG0yAeA0c1_d1_E9_IdentityVcAEmF", - "moduleName": "WalletCore" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV18OneOf_MessageOneofO", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, { "kind": "Constructor", "name": "init", @@ -317725,14 +313908,14 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" } ], "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallVACycfc", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallVACycfc", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputVACycfc", "moduleName": "WalletCore", "declAttributes": [ "AccessControl" @@ -317752,8 +313935,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvpZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317778,8 +313961,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV16protoMessageNameSSvgZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV16protoMessageNameSSvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317801,8 +313984,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317827,8 +314010,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", "moduleName": "WalletCore", "static": true, "implicit": true, @@ -317855,8 +314038,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", "sugared_genericSig": "", @@ -317886,8 +314069,8 @@ } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", "moduleName": "WalletCore", "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", "sugared_genericSig": "", @@ -317911,20 +314094,20 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "TW_Stellar_Proto_SigningOutput", + "printedName": "WalletCore.TW_Stellar_Proto_SigningOutput", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV2eeoiySbAC_ACtFZ", "moduleName": "WalletCore", "static": true, "declAttributes": [ @@ -317946,8 +314129,8 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivp", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivp", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317965,8 +314148,8 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV9hashValueSivg", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV9hashValueSivg", "moduleName": "WalletCore", "implicit": true, "isFromExtension": true, @@ -317976,11 +314159,12 @@ } ], "declKind": "Struct", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_PolymeshCallV", + "usr": "s:10WalletCore30TW_Stellar_Proto_SigningOutputV", + "mangledName": "$s10WalletCore30TW_Stellar_Proto_SigningOutputV", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "AccessControl", + "RawDocComment" ], "conformances": [ { @@ -318029,110 +314213,292 @@ }, { "kind": "TypeDecl", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "TW_Substrate_Proto_SigningInput", + "name": "StellarMemoType", + "printedName": "StellarMemoType", "children": [ { "kind": "Var", - "name": "blockHash", - "printedName": "blockHash", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4noneyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4noneyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4textyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4textyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO2idyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO2idyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO4hashyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO4hashyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "return", + "printedName": "return", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarMemoType.Type) -> WalletCore.StellarMemoType", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarMemoType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore15StellarMemoTypeO6returnyA2CmF", + "mangledName": "$s10WalletCore15StellarMemoTypeO6returnyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarMemoType?", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvp", + "moduleName": "WalletCore", + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9blockHash10Foundation4DataVvM", + "usr": "s:10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore15StellarMemoTypeO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "genesisHash", - "printedName": "genesisHash", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvp", + "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318141,79 +314507,205 @@ "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvg", + "usr": "s:10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore15StellarMemoTypeO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore15StellarMemoTypeO", + "mangledName": "$s10WalletCore15StellarMemoTypeO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StellarMemoType]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarMemoType", + "printedName": "WalletCore.StellarMemoType", + "usr": "s:10WalletCore15StellarMemoTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StellarPassphrase", + "printedName": "StellarPassphrase", + "children": [ + { + "kind": "Var", + "name": "stellar", + "printedName": "stellar", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarPassphrase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore17StellarPassphraseO7stellaryA2CmF", + "mangledName": "$s10WalletCore17StellarPassphraseO7stellaryA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "kin", + "printedName": "kin", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarPassphrase.Type) -> WalletCore.StellarPassphrase", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarPassphrase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11genesisHash10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore17StellarPassphraseO3kinyA2CmF", + "mangledName": "$s10WalletCore17StellarPassphraseO3kinyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "nonce", - "printedName": "nonce", + "name": "description", + "printedName": "description", "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvp", + "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvp", + "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "accessors": [ { @@ -318223,64 +314715,56 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvg", + "usr": "s:10WalletCore17StellarPassphraseO11descriptionSSvg", + "mangledName": "$s10WalletCore17StellarPassphraseO11descriptionSSvg", "moduleName": "WalletCore", "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarPassphrase?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV5nonces6UInt64VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValueACSgs6UInt32V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "specVersion", - "printedName": "specVersion", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -318290,12 +314774,10 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvp", + "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318310,73 +314792,40 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11specVersions6UInt32VvM", + "usr": "s:10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore17StellarPassphraseO8rawValues6UInt32Vvg", "moduleName": "WalletCore", "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "transactionVersion", - "printedName": "transactionVersion", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvp", + "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "static": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318385,162 +314834,318 @@ "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvg", + "usr": "s:10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore17StellarPassphraseO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, + "implicit": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore17StellarPassphraseO", + "mangledName": "$s10WalletCore17StellarPassphraseO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt32", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UInt32", "printedName": "Swift.UInt32", "usr": "s:s6UInt32V" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.StellarPassphrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarPassphrase", + "printedName": "WalletCore.StellarPassphrase", + "usr": "s:10WalletCore17StellarPassphraseO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18transactionVersions6UInt32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StellarVersionByte", + "printedName": "StellarVersionByte", + "children": [ { "kind": "Var", - "name": "tip", - "printedName": "tip", + "name": "accountID", + "printedName": "accountID", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO9accountIDyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO9accountIDyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "seed", + "printedName": "seed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] + } + ] + } ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO4seedyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO4seedyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "preAuthTX", + "printedName": "preAuthTX", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO9preAuthTXyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "sha256Hash", + "printedName": "sha256Hash", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StellarVersionByte.Type) -> WalletCore.StellarVersionByte", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "Metatype", + "printedName": "WalletCore.StellarVersionByte.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore18StellarVersionByteO10sha256HashyA2CmF", + "mangledName": "$s10WalletCore18StellarVersionByteO10sha256HashyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StellarVersionByte?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3tip10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } - ] + ], + "declKind": "Constructor", + "usr": "s:10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValueACSgs6UInt16V_tcfc", + "moduleName": "WalletCore", + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "era", - "printedName": "era", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvp", + "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -318549,311 +315154,511 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvg", + "usr": "s:10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", + "mangledName": "$s10WalletCore18StellarVersionByteO8rawValues6UInt16Vvg", "moduleName": "WalletCore", + "implicit": true, "accessorKind": "get" - }, + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Era", - "printedName": "WalletCore.TW_Substrate_Proto_Era", - "usr": "s:10WalletCore22TW_Substrate_Proto_EraV" + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvs", - "moduleName": "WalletCore", - "accessorKind": "set" - }, + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvpZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "accessors": [ { "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV3eraAA0c1_d1_E4_EraVvM", + "usr": "s:10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore18StellarVersionByteO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] + } + ], + "declKind": "Enum", + "usr": "s:10WalletCore18StellarVersionByteO", + "mangledName": "$s10WalletCore18StellarVersionByteO", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "UInt16", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "hasEra", - "printedName": "hasEra", + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ] } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvp", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Array", + "printedName": "[WalletCore.StellarVersionByte]", + "children": [ + { + "kind": "TypeNominal", + "name": "StellarVersionByte", + "printedName": "WalletCore.StellarVersionByte", + "usr": "s:10WalletCore18StellarVersionByteO" + } + ], + "usr": "s:Sa" } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV6hasEraSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" + ] } - ] - }, + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "WalletCore", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "StoredKey", + "printedName": "StoredKey", + "children": [ { "kind": "Function", - "name": "clearEra", - "printedName": "clearEra()", + "name": "load", + "printedName": "load(path:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "WalletCore.StoredKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV8clearErayyF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV8clearErayyF", + "usr": "s:10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", + "mangledName": "$s10WalletCore9StoredKeyC4load4pathACSgSS_tFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "Mutating", + "Final", "AccessControl", "RawDocComment" ], - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "privateKey", - "printedName": "privateKey", + "kind": "Function", + "name": "importPrivateKey", + "printedName": "importPrivateKey(privateKey:name:password:coin:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "Data", "printedName": "Foundation.Data", "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", + "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD007privateD04name8password4coinACSg10Foundation4DataV_SSAlA8CoinTypeOtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importPrivateKeyWithEncryption", + "printedName": "importPrivateKeyWithEncryption(privateKey:name:password:coin:encryption:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV10privateKey10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "network", - "printedName": "network", - "children": [ + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", + "mangledName": "$s10WalletCore9StoredKeyC013importPrivateD14WithEncryption07privateD04name8password4coin10encryptionACSg10Foundation4DataV_SSAmA8CoinTypeOAA0cdH0OtFZ", "moduleName": "WalletCore", + "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importHDWallet", + "printedName": "importHDWallet(mnemonic:name:password:coin:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "mangledName": "$s10WalletCore9StoredKeyC14importHDWallet8mnemonic4name8password4coinACSgSS_SS10Foundation4DataVAA8CoinTypeOtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importHDWalletWithEncryption", + "printedName": "importHDWalletWithEncryption(mnemonic:name:password:coin:encryption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32Vvs", - "moduleName": "WalletCore", - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "mangledName": "$s10WalletCore9StoredKeyC28importHDWalletWithEncryption8mnemonic4name8password4coin10encryptionACSgSS_SS10Foundation4DataVAA8CoinTypeOAA0cdH0OtFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "importJSON", + "printedName": "importJSON(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.StoredKey?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV7networks5Int32VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", + "mangledName": "$s10WalletCore9StoredKeyC10importJSON4jsonACSg10Foundation4DataV_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { "kind": "Var", - "name": "messageOneof", - "printedName": "messageOneof", + "name": "identifier", + "printedName": "identifier", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvp", + "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvp", + "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -318864,93 +315669,49 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof?", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvs", + "usr": "s:10WalletCore9StoredKeyC10identifierSSSgvg", + "mangledName": "$s10WalletCore9StoredKeyC10identifierSSSgvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12messageOneofAC013OneOf_MessageI0OSgvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "name": "name", + "printedName": "name", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvp", + "usr": "s:10WalletCore9StoredKeyC4nameSSvp", + "mangledName": "$s10WalletCore9StoredKeyC4nameSSvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -318960,64 +315721,26 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvs", + "usr": "s:10WalletCore9StoredKeyC4nameSSvg", + "mangledName": "$s10WalletCore9StoredKeyC4nameSSvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV11balanceCallAA0c1_d1_E8_BalanceVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "multiAddress", - "printedName": "multiAddress", + "name": "isMnemonic", + "printedName": "isMnemonic", "children": [ { "kind": "TypeNominal", @@ -319027,11 +315750,13 @@ } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvp", + "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvp", + "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -319047,72 +315772,36 @@ } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvs", + "usr": "s:10WalletCore9StoredKeyC10isMnemonicSbvg", + "mangledName": "$s10WalletCore9StoredKeyC10isMnemonicSbvg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12multiAddressSbvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "polymeshCall", - "printedName": "polymeshCall", + "name": "accountCount", + "printedName": "accountCount", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvp", + "usr": "s:10WalletCore9StoredKeyC12accountCountSivp", + "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivp", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], "accessors": [ { @@ -319122,77 +315811,48 @@ "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvg", - "moduleName": "WalletCore", - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_PolymeshCall", - "printedName": "WalletCore.TW_Substrate_Proto_PolymeshCall", - "usr": "s:10WalletCore31TW_Substrate_Proto_PolymeshCallV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0Vvs", + "usr": "s:10WalletCore9StoredKeyC12accountCountSivg", + "mangledName": "$s10WalletCore9StoredKeyC12accountCountSivg", "moduleName": "WalletCore", - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final" ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV12polymeshCallAA0c1_d1_e9_PolymeshI0VvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "hasPolymeshCall", - "printedName": "hasPolymeshCall", + "name": "encryptionParameters", + "printedName": "encryptionParameters", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvp", + "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvp", + "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvp", "moduleName": "WalletCore", "declAttributes": [ + "Final", "AccessControl", "RawDocComment" ], @@ -319204,258 +315864,423 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV15hasPolymeshCallSbvg", + "usr": "s:10WalletCore9StoredKeyC20encryptionParametersSSSgvg", + "mangledName": "$s10WalletCore9StoredKeyC20encryptionParametersSSSgvg", "moduleName": "WalletCore", + "declAttributes": [ + "Final" + ], "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "clearPolymeshCall", - "printedName": "clearPolymeshCall()", + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryptionLevel:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" } ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17clearPolymeshCallyyF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17clearPolymeshCallyyF", + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevelACSS_10Foundation4DataVAA0cd10EncryptionH0Otcfc", "moduleName": "WalletCore", "declAttributes": [ - "Mutating", - "AccessControl", - "RawDocComment" + "AccessControl" ], - "funcSelfKind": "Mutating" + "init_kind": "Designated" }, { - "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryptionLevel:encryption:)", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password15encryptionLevel0G0ACSS_10Foundation4DataVAA0cd10EncryptionH0OAA0cdK0Otcfc", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", "AccessControl" ], - "hasStorage": true, - "accessors": [ + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8passwordACSS_10Foundation4DataVtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:encryption:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKey", + "printedName": "WalletCore.StoredKey", + "usr": "s:10WalletCore9StoredKeyC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "declKind": "Constructor", + "usr": "s:10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "mangledName": "$s10WalletCore9StoredKeyC4name8password10encryptionACSS_10Foundation4DataVAA0cD10EncryptionOtcfc", + "moduleName": "WalletCore", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "account", + "printedName": "account(index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "mangledName": "$s10WalletCore9StoredKeyC7account5indexAA7AccountCSgSi_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accountForCoin", + "printedName": "accountForCoin(coin:wallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", + "mangledName": "$s10WalletCore9StoredKeyC14accountForCoin4coin6walletAA7AccountCSgAA0G4TypeO_AA8HDWalletCSgtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "OneOf_MessageOneof", - "printedName": "OneOf_MessageOneof", + "kind": "Function", + "name": "accountForCoinDerivation", + "printedName": "accountForCoinDerivation(coin:derivation:wallet:)", "children": [ { - "kind": "Var", - "name": "balanceCall", - "printedName": "balanceCall", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.Account?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof.Type) -> (WalletCore.TW_Substrate_Proto_Balance) -> WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WalletCore.TW_Substrate_Proto_Balance) -> WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_Balance", - "printedName": "WalletCore.TW_Substrate_Proto_Balance", - "usr": "s:10WalletCore26TW_Substrate_Proto_BalanceV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Account", + "printedName": "WalletCore.Account", + "usr": "s:10WalletCore7AccountC" } ], - "declKind": "EnumElement", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO11balanceCallyAeA0c1_d1_E8_BalanceVcAEmF", - "moduleName": "WalletCore" + "usr": "s:Sq" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" - }, - { - "kind": "TypeNominal", - "name": "OneOf_MessageOneof", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO" + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" } ], - "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO2eeoiySbAE_AEtFZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV18OneOf_MessageOneofO", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", + "mangledName": "$s10WalletCore9StoredKeyC24accountForCoinDerivation4coin10derivation6walletAA7AccountCSgAA0G4TypeO_AA0H0OAA8HDWalletCSgtF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "addAccountDerivation", + "printedName": "addAccountDerivation(address:coin:derivation:derivationPath:publicKey:extendedPublicKey:)", "children": [ { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputVACycfc", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputVACycfc", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", + "mangledName": "$s10WalletCore9StoredKeyC20addAccountDerivation7address4coin10derivation0J4Path06publicD0014extendedPublicD0ySS_AA8CoinTypeOAA0G0OS3StF", "moduleName": "WalletCore", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "kind": "Function", + "name": "addAccount", + "printedName": "addAccount(address:coin:derivationPath:publicKey:extendedPublicKey:)", "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, { "kind": "TypeNominal", "name": "String", @@ -319463,96 +316288,49 @@ "usr": "s:SS" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvpZ", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", + "mangledName": "$s10WalletCore9StoredKeyC10addAccount7address4coin14derivationPath06publicD0014extendedPublicD0ySS_AA8CoinTypeOS3StF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "kind": "Function", + "name": "removeAccountForCoin", + "printedName": "removeAccountForCoin(coin:)", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", + "mangledName": "$s10WalletCore9StoredKeyC20removeAccountForCoin4coinyAA0H4TypeO_tF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", + "name": "removeAccountForCoinDerivation", + "printedName": "removeAccountForCoinDerivation(coin:derivation:)", "children": [ { "kind": "TypeNominal", @@ -319561,29 +316339,32 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Derivation", + "printedName": "WalletCore.Derivation", + "usr": "s:10WalletCore10DerivationO" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", + "usr": "s:10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", + "mangledName": "$s10WalletCore9StoredKeyC30removeAccountForCoinDerivation4coin10derivationyAA0H4TypeO_AA0I0OtF", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", "declAttributes": [ - "Mutating", - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", + "name": "removeAccountForCoinDerivationPath", + "printedName": "removeAccountForCoinDerivationPath(coin:derivationPath:)", "children": [ { "kind": "TypeNominal", @@ -319592,28 +316373,32 @@ }, { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", + "usr": "s:10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", + "mangledName": "$s10WalletCore9StoredKeyC34removeAccountForCoinDerivationPath4coin010derivationJ0yAA0H4TypeO_SStF", "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, - "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "name": "store", + "printedName": "store(path:)", "children": [ { "kind": "TypeNominal", @@ -319623,133 +316408,218 @@ }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC5store4pathSbSS_tF", + "mangledName": "$s10WalletCore9StoredKeyC5store4pathSbSS_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptPrivateKey", + "printedName": "decryptPrivateKey(password:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningInput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningInput", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV" + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], "declKind": "Func", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV2eeoiySbAC_ACtFZ", + "usr": "s:10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", + "mangledName": "$s10WalletCore9StoredKeyC014decryptPrivateD08password10Foundation4DataVSgAH_tF", "moduleName": "WalletCore", - "static": true, "declAttributes": [ - "AccessControl" + "Final", + "AccessControl", + "RawDocComment" ], - "isFromExtension": true, "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Function", + "name": "decryptMnemonic", + "printedName": "decryptMnemonic(password:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivp", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC15decryptMnemonic8passwordSSSg10Foundation4DataV_tF", "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessors": [ + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "privateKey", + "printedName": "privateKey(coin:password:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.PrivateKey?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "PrivateKey", + "printedName": "WalletCore.PrivateKey", + "usr": "s:10WalletCore10PrivateKeyC" } ], - "declKind": "Accessor", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivg", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV9hashValueSivg", - "moduleName": "WalletCore", - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CoinType", + "printedName": "WalletCore.CoinType", + "usr": "s:10WalletCore8CoinTypeO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" } - ] - } - ], - "declKind": "Struct", - "usr": "s:10WalletCore31TW_Substrate_Proto_SigningInputV", - "mangledName": "$s10WalletCore31TW_Substrate_Proto_SigningInputV", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "mangledName": "$s10WalletCore9StoredKeyC07privateD04coin8passwordAA07PrivateD0CSgAA8CoinTypeO_10Foundation4DataVtF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "kind": "Function", + "name": "wallet", + "printedName": "wallet(password:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "WalletCore.HDWallet?", + "children": [ + { + "kind": "TypeNominal", + "name": "HDWallet", + "printedName": "WalletCore.HDWallet", + "usr": "s:10WalletCore8HDWalletC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC6wallet8passwordAA8HDWalletCSg10Foundation4DataV_tF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "TypeDecl", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "TW_Substrate_Proto_SigningOutput", - "children": [ + "kind": "Function", + "name": "exportJSON", + "printedName": "exportJSON()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", + "mangledName": "$s10WalletCore9StoredKeyC10exportJSON10Foundation4DataVSgyF", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, { - "kind": "Var", - "name": "encoded", - "printedName": "encoded", + "kind": "Function", + "name": "fixAddresses", + "printedName": "fixAddresses(password:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", "name": "Data", @@ -319757,262 +316627,199 @@ "usr": "s:10Foundation4DataV" } ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvp", + "declKind": "Func", + "usr": "s:10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", + "mangledName": "$s10WalletCore9StoredKeyC12fixAddresses8passwordSb10Foundation4DataV_tF", "moduleName": "WalletCore", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", "RawDocComment" ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:10WalletCore9StoredKeyC", + "mangledName": "$s10WalletCore9StoredKeyC", + "moduleName": "WalletCore", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "StoredKeyEncryption", + "printedName": "StoredKeyEncryption", + "children": [ + { + "kind": "Var", + "name": "aes128Ctr", + "printedName": "aes128Ctr", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" }, { "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV7encoded10Foundation4DataVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "unknownFields", - "printedName": "unknownFields", + "name": "aes128Cbc", + "printedName": "aes128Cbc", "children": [ { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvp", - "moduleName": "WalletCore", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvg", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" }, { "kind": "TypeNominal", - "name": "UnknownStorage", - "printedName": "SwiftProtobuf.UnknownStorage", - "usr": "s:13SwiftProtobuf14UnknownStorageV" - } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvs", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13unknownFields13SwiftProtobuf14UnknownStorageVvM", - "moduleName": "WalletCore", - "implicit": true, - "accessorKind": "_modify" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes128CbcyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Var", + "name": "aes192Ctr", + "printedName": "aes192Ctr", "children": [ { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] + } + ] } ], - "declKind": "Constructor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputVACycfc", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputVACycfc", - "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes192CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "protoMessageName", - "printedName": "protoMessageName", + "name": "aes256Ctr", + "printedName": "aes256Ctr", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvpZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryption.Type) -> WalletCore.StoredKeyEncryption", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryption.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ] } - ], - "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV16protoMessageNameSSvgZ", - "moduleName": "WalletCore", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO9aes256CtryA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "_protobuf_nameMap", - "printedName": "_protobuf_nameMap", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvpZ", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -320021,136 +316828,79 @@ "children": [ { "kind": "TypeNominal", - "name": "_NameMap", - "printedName": "SwiftProtobuf._NameMap", - "usr": "s:13SwiftProtobuf8_NameMapV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV17_protobuf_nameMap13SwiftProtobuf05_NameJ0VvgZ", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "decodeMessage", - "printedName": "decodeMessage(decoder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV13decodeMessage7decoderyxz_tK13SwiftProtobuf7DecoderRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Decoder>", - "sugared_genericSig": "", - "declAttributes": [ - "Mutating", - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "Mutating" - }, - { - "kind": "Function", - "name": "traverse", - "printedName": "traverse(visitor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0", - "paramValueOwnership": "InOut" - } - ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV8traverse7visitoryxz_tK13SwiftProtobuf7VisitorRzlF", - "moduleName": "WalletCore", - "genericSig": "<τ_0_0 where τ_0_0 : SwiftProtobuf.Visitor>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "name": "Optional", + "printedName": "WalletCore.StoredKeyEncryption?", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "TW_Substrate_Proto_SigningOutput", - "printedName": "WalletCore.TW_Substrate_Proto_SigningOutput", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], - "declKind": "Func", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "s:10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "implicit": true, + "init_kind": "Designated" }, { "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" } ], "declKind": "Var", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivp", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivp", + "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvpZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -320159,58 +316909,46 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" } ], "declKind": "Accessor", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivg", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV9hashValueSivg", + "usr": "s:10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO8allCasesSayACGvgZ", "moduleName": "WalletCore", + "static": true, "implicit": true, - "isFromExtension": true, "accessorKind": "get" } ] } ], - "declKind": "Struct", - "usr": "s:10WalletCore32TW_Substrate_Proto_SigningOutputV", - "mangledName": "$s10WalletCore32TW_Substrate_Proto_SigningOutputV", + "declKind": "Enum", + "usr": "s:10WalletCore19StoredKeyEncryptionO", + "mangledName": "$s10WalletCore19StoredKeyEncryptionO", "moduleName": "WalletCore", "declAttributes": [ "AccessControl", "RawDocComment" ], + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Message", - "printedName": "Message", - "usr": "s:13SwiftProtobuf7MessageP", - "mangledName": "$s13SwiftProtobuf7MessageP" - }, - { - "kind": "Conformance", - "name": "_MessageImplementationBase", - "printedName": "_MessageImplementationBase", - "usr": "s:13SwiftProtobuf26_MessageImplementationBaseP", - "mangledName": "$s13SwiftProtobuf26_MessageImplementationBaseP" - }, - { - "kind": "Conformance", - "name": "_ProtoNameProviding", - "printedName": "_ProtoNameProviding", - "usr": "s:13SwiftProtobuf19_ProtoNameProvidingP", - "mangledName": "$s13SwiftProtobuf19_ProtoNameProvidingP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", @@ -320221,121 +316959,228 @@ }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryption]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryption", + "printedName": "WalletCore.StoredKeyEncryption", + "usr": "s:10WalletCore19StoredKeyEncryptionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "TypeDecl", - "name": "SubstrateAddress", - "printedName": "SubstrateAddress", + "name": "StoredKeyEncryptionLevel", + "printedName": "StoredKeyEncryptionLevel", "children": [ { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Var", + "name": "default", + "printedName": "default", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" - }, - { - "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore16SubstrateAddressC2eeoiySbAC_ACtFZ", - "mangledName": "$s10WalletCore16SubstrateAddressC2eeoiySbAC_ACtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7defaultyA2CmF", + "moduleName": "WalletCore" }, { - "kind": "Function", - "name": "isValidString", - "printedName": "isValidString(string:network:)", + "kind": "Var", + "name": "minimal", + "printedName": "minimal", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO7minimalyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "weak", + "printedName": "weak", + "children": [ { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore16SubstrateAddressC13isValidString6string7networkSbSS_s5Int32VtFZ", - "mangledName": "$s10WalletCore16SubstrateAddressC13isValidString6string7networkSbSS_s5Int32VtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO4weakyA2CmF", + "moduleName": "WalletCore" + }, + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(WalletCore.StoredKeyEncryptionLevel.Type) -> WalletCore.StoredKeyEncryptionLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "WalletCore.StoredKeyEncryptionLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ] + } + ] + } ], - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8standardyA2CmF", + "moduleName": "WalletCore" }, { "kind": "Var", - "name": "description", - "printedName": "description", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Var", - "usr": "s:10WalletCore16SubstrateAddressC11descriptionSSvp", - "mangledName": "$s10WalletCore16SubstrateAddressC11descriptionSSvp", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvp", "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], + "implicit": true, "accessors": [ { "kind": "Accessor", @@ -320344,18 +317189,16 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Accessor", - "usr": "s:10WalletCore16SubstrateAddressC11descriptionSSvg", - "mangledName": "$s10WalletCore16SubstrateAddressC11descriptionSSvg", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValues6UInt32Vvg", "moduleName": "WalletCore", - "declAttributes": [ - "Final" - ], + "implicit": true, "accessorKind": "get" } ] @@ -320363,202 +317206,171 @@ { "kind": "Constructor", "name": "init", - "printedName": "init(string:network:)", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "WalletCore.SubstrateAddress?", + "printedName": "WalletCore.StoredKeyEncryptionLevel?", "children": [ { "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" } ], "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" } ], "declKind": "Constructor", - "usr": "s:10WalletCore16SubstrateAddressC6string7networkACSgSS_s5Int32Vtcfc", - "mangledName": "$s10WalletCore16SubstrateAddressC6string7networkACSgSS_s5Int32Vtcfc", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8rawValueACSgs6UInt32V_tcfc", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], + "implicit": true, "init_kind": "Designated" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(publicKey:network:)", + "kind": "Var", + "name": "allCases", + "printedName": "allCases", "children": [ { "kind": "TypeNominal", - "name": "SubstrateAddress", - "printedName": "WalletCore.SubstrateAddress", - "usr": "s:10WalletCore16SubstrateAddressC" - }, - { - "kind": "TypeNominal", - "name": "PublicKey", - "printedName": "WalletCore.PublicKey", - "usr": "s:10WalletCore9PublicKeyC" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" } ], - "declKind": "Constructor", - "usr": "s:10WalletCore16SubstrateAddressC9publicKey7networkAcA06PublicF0C_s5Int32Vtcfc", - "mangledName": "$s10WalletCore16SubstrateAddressC9publicKey7networkAcA06PublicF0C_s5Int32Vtcfc", + "declKind": "Var", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvpZ", "moduleName": "WalletCore", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO8allCasesSayACGvgZ", + "moduleName": "WalletCore", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] } ], - "declKind": "Class", - "usr": "s:10WalletCore16SubstrateAddressC", - "mangledName": "$s10WalletCore16SubstrateAddressC", + "declKind": "Enum", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO", + "mangledName": "$s10WalletCore24StoredKeyEncryptionLevelO", "moduleName": "WalletCore", "declAttributes": [ - "Final", "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true, + "enumRawTypeName": "UInt32", "conformances": [ { "kind": "Conformance", - "name": "Address", - "printedName": "Address", - "usr": "s:10WalletCore7AddressP", - "mangledName": "$s10WalletCore7AddressP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "WalletCore", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SubstrateSigner", - "printedName": "SubstrateSigner", - "children": [ + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, { - "kind": "Function", - "name": "message", - "printedName": "message(data:)", + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore15SubstrateSignerC7message4data10Foundation4DataVAH_tFZ", - "mangledName": "$s10WalletCore15SubstrateSignerC7message4data10Foundation4DataVAH_tFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Function", - "name": "transaction", - "printedName": "transaction(data:publicKey:signature:)", + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", "children": [ { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[WalletCore.StoredKeyEncryptionLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "StoredKeyEncryptionLevel", + "printedName": "WalletCore.StoredKeyEncryptionLevel", + "usr": "s:10WalletCore24StoredKeyEncryptionLevelO" + } + ], + "usr": "s:Sa" + } + ] } ], - "declKind": "Func", - "usr": "s:10WalletCore15SubstrateSignerC11transaction4data9publicKey9signature10Foundation4DataVAJ_A2JtFZ", - "mangledName": "$s10WalletCore15SubstrateSignerC11transaction4data9publicKey9signature10Foundation4DataVAJ_A2JtFZ", - "moduleName": "WalletCore", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" } - ], - "declKind": "Class", - "usr": "s:10WalletCore15SubstrateSignerC", - "mangledName": "$s10WalletCore15SubstrateSignerC", - "moduleName": "WalletCore", - "declAttributes": [ - "Final", - "AccessControl" - ], - "hasMissingDesignatedInitializers": true + ] }, { "kind": "Import", @@ -369884,6 +366696,70 @@ "RawDocComment" ], "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRSValues", + "printedName": "getRSValues(signature:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore8WebAuthnV11getRSValues9signature10Foundation4DataVAH_tFZ", + "mangledName": "$s10WalletCore8WebAuthnV11getRSValues9signature10Foundation4DataVAH_tFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reconstructOriginalMessage", + "printedName": "reconstructOriginalMessage(authenticatorData:clientDataJSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:10WalletCore8WebAuthnV26reconstructOriginalMessage17authenticatorData06clientI4JSON10Foundation0I0VAI_AItFZ", + "mangledName": "$s10WalletCore8WebAuthnV26reconstructOriginalMessage17authenticatorData06clientI4JSON10Foundation0I0VAI_AItFZ", + "moduleName": "WalletCore", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Struct", @@ -378668,413 +375544,308 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2337, + "offset": 2189, "length": 15, "value": "\"TW.Barz.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2568, + "offset": 2420, "length": 23, "value": "\".ContractAddressInput\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2662, + "offset": 2514, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2678, - "length": 9, - "value": "\"factory\"" + "offset": 2534, + "length": 13, + "value": "\"entry_point\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2694, + "offset": 2554, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2714, - "length": 19, - "value": "\"diamond_cut_facet\"" + "offset": 2570, + "length": 9, + "value": "\"factory\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2740, + "offset": 2586, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2760, + "offset": 2606, "length": 15, "value": "\"account_facet\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2782, + "offset": 2628, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2802, + "offset": 2648, "length": 20, "value": "\"verification_facet\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2829, + "offset": 2675, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2849, - "length": 22, - "value": "\"token_receiver_facet\"" + "offset": 2695, + "length": 16, + "value": "\"facet_registry\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2878, + "offset": 2718, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2898, - "length": 21, - "value": "\"diamond_loupe_facet\"" + "offset": 2738, + "length": 18, + "value": "\"default_fallback\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 2926, + "offset": 2763, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 2946, - "length": 14, - "value": "\"diamond_init\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 2967, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 2987, - "length": 16, - "value": "\"facet_registry\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 3010, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 3030, - "length": 13, - "value": "\"entry_point\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 3050, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "StringLiteral", - "offset": 3067, + "offset": 2779, "length": 10, "value": "\"bytecode\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3084, - "length": 2, - "value": "11" + "offset": 2796, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "StringLiteral", - "offset": 3105, + "offset": 2816, "length": 12, "value": "\"public_key\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3543, + "offset": 3254, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3627, + "offset": 3341, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3719, + "offset": 3425, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3808, + "offset": 3514, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3902, + "offset": 3608, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 3997, + "offset": 3698, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4091, + "offset": 3790, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4179, + "offset": 3875, "length": 1, "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4269, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4356, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4442, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 4742, + "offset": 4180, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 4875, + "offset": 4297, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5002, + "offset": 4424, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5139, + "offset": 4561, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5278, + "offset": 4690, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5415, + "offset": 4823, "length": 1, "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5540, + "offset": 4942, "length": 1, "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "IntegerLiteral", - "offset": 5669, + "offset": 5063, "length": 1, "value": "8" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 5792, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "IntegerLiteral", - "offset": 6033, - "length": 2, - "value": "11" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6256, + "offset": 5291, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6321, + "offset": 5340, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6380, + "offset": 5399, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6449, + "offset": 5468, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6520, + "offset": 5529, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6589, + "offset": 5594, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6646, + "offset": 5645, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6707, + "offset": 5698, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6762, + "offset": 5759, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", "kind": "BooleanLiteral", - "offset": 6813, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6866, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6927, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Barz.pb.swift", - "kind": "BooleanLiteral", - "offset": 6945, + "offset": 5777, "length": 4, "value": "true" }, @@ -391839,6 +388610,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", "kind": "IntegerLiteral", @@ -392791,6 +389583,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", "kind": "IntegerLiteral", @@ -393743,6 +390556,27 @@ "length": 4, "value": "1030" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 3968, + "length": 8, + "value": "10000787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/CoinType.swift", + "kind": "IntegerLiteral", + "offset": 4001, + "length": 4, + "value": "5611" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Common.pb.swift", "kind": "IntegerLiteral", @@ -405149,189 +401983,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -405422,189 +402270,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -405695,189 +402557,203 @@ { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 826, + "offset": 824, + "length": 4, + "value": "5611" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 848, "length": 2, "value": "60" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 846, + "offset": 868, "length": 2, "value": "82" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 865, + "offset": 887, "length": 5, "value": "42220" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 889, + "offset": 911, "length": 6, "value": "534353" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 916, + "offset": 938, "length": 3, "value": "888" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 938, + "offset": 960, "length": 2, "value": "25" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 961, + "offset": 983, "length": 2, "value": "10" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 980, + "offset": 1002, "length": 3, "value": "100" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1004, + "offset": 1026, "length": 5, "value": "10000" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1028, + "offset": 1050, "length": 3, "value": "250" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1048, + "offset": 1070, "length": 3, "value": "288" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1067, + "offset": 1089, "length": 3, "value": "321" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1089, + "offset": 1111, "length": 3, "value": "324" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1109, + "offset": 1131, "length": 3, "value": "128" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1130, + "offset": 1155, + "length": 3, + "value": "787" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", + "kind": "IntegerLiteral", + "offset": 1176, "length": 4, "value": "1088" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1159, + "offset": 1205, "length": 4, "value": "1101" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1184, + "offset": 1230, "length": 4, "value": "1284" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1210, + "offset": 1256, "length": 4, "value": "1285" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1232, + "offset": 1278, "length": 4, "value": "2020" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1256, + "offset": 1302, "length": 4, "value": "2222" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1281, + "offset": 1327, "length": 4, "value": "4689" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1304, + "offset": 1350, "length": 4, "value": "8217" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1331, + "offset": 1377, "length": 5, "value": "43114" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1354, + "offset": 1400, "length": 4, "value": "9001" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1379, + "offset": 1425, "length": 5, "value": "42161" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1407, + "offset": 1453, "length": 2, "value": "56" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/EthereumChainID.swift", "kind": "IntegerLiteral", - "offset": 1428, + "offset": 1474, "length": 10, "value": "1313161554" }, @@ -435458,11616 +432334,10790 @@ }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "Array", - "offset": 5087, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 2748, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 2805, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "Array", - "offset": 11716, + "offset": 9285, "length": 2, "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13393, + "offset": 10388, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "Array", - "offset": 13797, - "length": 2, - "value": "[]" + "kind": "IntegerLiteral", + "offset": 10456, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15228, + "offset": 11447, "length": 1, "value": "0" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 11520, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 18808, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15304, + "offset": 22745, "length": 1, "value": "0" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "Array", + "offset": 23714, + "length": 2, + "value": "[]" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15384, + "offset": 29165, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16070, + "offset": 30770, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18563, + "offset": 40646, "length": 19, "value": "\"TW.Polkadot.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18737, + "offset": 40820, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18753, + "offset": 40836, "length": 8, "value": "\"STAKED\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18768, + "offset": 40851, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18784, + "offset": 40867, "length": 7, "value": "\"STASH\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18798, + "offset": 40881, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18814, + "offset": 40897, "length": 12, "value": "\"CONTROLLER\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19037, + "offset": 41120, "length": 6, "value": "\".Era\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19114, + "offset": 41197, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19134, + "offset": 41217, "length": 14, "value": "\"block_number\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19155, + "offset": 41238, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 19171, + "offset": 41254, "length": 8, "value": "\"period\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19605, + "offset": 41688, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19693, + "offset": 41776, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19908, + "offset": 41991, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19993, + "offset": 42076, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20024, + "offset": 42107, "length": 1, "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20104, + "offset": 42187, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20308, + "offset": 42391, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20355, + "offset": 42438, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20416, + "offset": 42499, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20434, + "offset": 42517, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20651, - "length": 10, - "value": "\".Balance\"" + "offset": 42744, + "length": 20, + "value": "\".CustomCallIndices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20732, + "offset": 42835, "length": 1, - "value": "1" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20748, - "length": 10, - "value": "\"transfer\"" + "offset": 42855, + "length": 14, + "value": "\"module_index\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20765, + "offset": 42876, "length": 1, - "value": "2" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20781, - "length": 15, - "value": "\"batchTransfer\"" + "offset": 42896, + "length": 14, + "value": "\"method_index\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21222, + "offset": 43336, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21310, - "length": 5, - "value": "false" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21387, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 43423, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21676, + "offset": 43642, "length": 1, - "value": "2" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21769, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 43726, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 21846, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 43762, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22757, + "offset": 43846, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 22958, - "length": 1, - "value": "2" + "kind": "BooleanLiteral", + "offset": 44078, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23200, + "offset": 44135, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23261, + "offset": 44196, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23279, + "offset": 44214, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23530, - "length": 11, - "value": "\".Transfer\"" + "offset": 44435, + "length": 14, + "value": "\".CallIndices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23612, + "offset": 44520, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23632, - "length": 12, - "value": "\"to_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 23651, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 23667, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24100, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24186, - "length": 1, - "value": "2" + "offset": 44536, + "length": 8, + "value": "\"custom\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24484, + "offset": 44970, "length": 1, "value": "1" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 24596, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 24822, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 24867, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24928, + "offset": 45059, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24946, + "offset": 45131, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 25202, - "length": 16, - "value": "\".BatchTransfer\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 25289, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 25305, - "length": 11, - "value": "\"transfers\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 25742, - "length": 1, - "value": "1" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26047, + "offset": 45930, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26283, + "offset": 46146, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26344, + "offset": 46207, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 26362, + "offset": 46225, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26579, + "offset": 46442, "length": 10, - "value": "\".Staking\"" + "value": "\".Balance\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26660, + "offset": 46523, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26676, - "length": 6, - "value": "\"bond\"" + "offset": 46539, + "length": 10, + "value": "\"transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26689, + "offset": 46556, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26709, - "length": 19, - "value": "\"bond_and_nominate\"" + "offset": 46572, + "length": 15, + "value": "\"batchTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26735, + "offset": 46594, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26755, - "length": 12, - "value": "\"bond_extra\"" + "offset": 46614, + "length": 16, + "value": "\"asset_transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26774, + "offset": 46637, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 26790, - "length": 8, - "value": "\"unbond\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26805, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26825, - "length": 19, - "value": "\"withdraw_unbonded\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26851, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26867, - "length": 10, - "value": "\"nominate\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26884, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26900, - "length": 7, - "value": "\"chill\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26914, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26934, - "length": 18, - "value": "\"chill_and_unbond\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 26959, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 26975, - "length": 8, - "value": "\"rebond\"" + "offset": 46657, + "length": 22, + "value": "\"batch_asset_transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27409, + "offset": 47105, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27493, + "offset": 47193, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27570, + "offset": 47270, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27851, + "offset": 47559, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27946, + "offset": 47652, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28023, + "offset": 47729, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28326, + "offset": 48028, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28415, + "offset": 48121, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28492, + "offset": 48198, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28783, + "offset": 48497, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28869, + "offset": 48595, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28946, + "offset": 48672, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29231, + "offset": 49593, "length": 1, - "value": "5" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 29327, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 49794, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 29404, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 49995, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29709, + "offset": 50206, "length": 1, - "value": "6" + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 50448, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 29797, + "offset": 50509, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 29874, + "offset": 50527, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 30163, - "length": 1, - "value": "7" + "kind": "StringLiteral", + "offset": 50778, + "length": 11, + "value": "\".Transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30248, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 50860, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30325, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 50880, + "length": 12, + "value": "\"to_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30608, + "offset": 50899, "length": 1, - "value": "8" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30702, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 50915, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 30779, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 50929, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 31080, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 50945, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 31166, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 50958, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 31243, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 50978, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32132, + "offset": 51418, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32337, + "offset": 51504, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32530, + "offset": 51585, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32717, + "offset": 51666, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32924, + "offset": 52269, "length": 1, - "value": "5" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33115, + "offset": 52381, "length": 1, - "value": "6" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33300, + "offset": 52492, "length": 1, - "value": "7" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33503, + "offset": 52609, "length": 1, - "value": "8" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 33690, - "length": 1, - "value": "9" + "kind": "BooleanLiteral", + "offset": 52839, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 33932, + "offset": 52884, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 33993, + "offset": 52927, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34011, - "length": 4, - "value": "true" + "offset": 52986, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 34258, - "length": 7, - "value": "\".Bond\"" + "kind": "BooleanLiteral", + "offset": 53047, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 34336, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 53065, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34352, - "length": 12, - "value": "\"controller\"" + "offset": 53321, + "length": 16, + "value": "\".BatchTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34371, + "offset": 53408, "length": 1, - "value": "2" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34387, - "length": 7, - "value": "\"value\"" + "offset": 53428, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34401, + "offset": 53449, "length": 1, - "value": "3" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 34421, - "length": 20, - "value": "\"reward_destination\"" + "offset": 53465, + "length": 11, + "value": "\"transfers\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34867, + "offset": 53902, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34954, + "offset": 53992, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 35035, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 35346, + "offset": 54588, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 35458, + "offset": 54714, "length": 1, "value": "2" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 35595, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 35815, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35860, + "offset": 54956, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35929, + "offset": 55009, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 35990, + "offset": 55070, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 36008, + "offset": 55088, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36266, - "length": 18, - "value": "\".BondAndNominate\"" + "offset": 55344, + "length": 16, + "value": "\".AssetTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36355, + "offset": 55431, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36371, - "length": 12, - "value": "\"controller\"" + "offset": 55451, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36390, + "offset": 55472, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36406, - "length": 7, - "value": "\"value\"" + "offset": 55492, + "length": 12, + "value": "\"to_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36420, + "offset": 55511, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36440, - "length": 20, - "value": "\"reward_destination\"" + "offset": 55527, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36467, + "offset": 55541, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 36483, - "length": 12, - "value": "\"nominators\"" + "offset": 55561, + "length": 10, + "value": "\"asset_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 55578, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 55598, + "length": 14, + "value": "\"fee_asset_id\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 36921, + "offset": 56038, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37008, + "offset": 56128, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37089, + "offset": 56214, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37181, + "offset": 56295, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37487, + "offset": 56379, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 56975, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37599, + "offset": 57100, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37736, + "offset": 57212, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 37859, + "offset": 57244, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57325, "length": 1, "value": "4" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57360, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 57444, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 57686, + "length": 5, + "value": "false" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38101, + "offset": 57739, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38146, + "offset": 57784, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38215, + "offset": 57833, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38270, + "offset": 57888, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38331, + "offset": 57949, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 38349, + "offset": 57967, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 38601, - "length": 12, - "value": "\".BondExtra\"" + "offset": 58228, + "length": 21, + "value": "\".BatchAssetTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 38684, + "offset": 58320, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 38700, - "length": 7, - "value": "\"value\"" + "offset": 58340, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 39133, + "offset": 58361, "length": 1, - "value": "1" + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 58381, + "length": 14, + "value": "\"fee_asset_id\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 39422, + "offset": 58402, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39642, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 58418, + "length": 11, + "value": "\"transfers\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39703, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 58855, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 39721, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 58945, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 39970, - "length": 9, - "value": "\".Unbond\"" + "kind": "IntegerLiteral", + "offset": 59032, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40050, + "offset": 59628, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 40066, - "length": 7, - "value": "\"value\"" + "kind": "IntegerLiteral", + "offset": 59667, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40499, + "offset": 59751, "length": 1, - "value": "1" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 40788, + "offset": 59873, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41002, + "offset": 60125, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 60180, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 60233, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41063, + "offset": 60294, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 41081, + "offset": 60312, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 41330, - "length": 9, - "value": "\".Rebond\"" + "offset": 60529, + "length": 10, + "value": "\".Staking\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 41410, + "offset": 60610, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 41426, - "length": 7, - "value": "\"value\"" + "offset": 60626, + "length": 6, + "value": "\"bond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 41859, + "offset": 60639, "length": 1, - "value": "1" + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60659, + "length": 19, + "value": "\"bond_and_nominate\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 42148, + "offset": 60685, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42362, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 60705, + "length": 12, + "value": "\"bond_extra\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42423, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 60724, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 42441, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 60740, + "length": 8, + "value": "\"unbond\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 60755, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 42700, + "offset": 60775, "length": 19, - "value": "\".WithdrawUnbonded\"" + "value": "\"withdraw_unbonded\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 42790, + "offset": 60801, "length": 1, - "value": "1" + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 42810, - "length": 16, - "value": "\"slashing_spans\"" + "offset": 60817, + "length": 10, + "value": "\"nominate\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43252, + "offset": 60834, "length": 1, - "value": "1" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60850, + "length": 7, + "value": "\"chill\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43475, + "offset": 60864, "length": 1, - "value": "0" + "value": "8" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 60884, + "length": 18, + "value": "\"chill_and_unbond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 43561, + "offset": 60909, "length": 1, - "value": "1" + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 43811, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 60925, + "length": 8, + "value": "\"rebond\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 61359, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 43872, + "offset": 61443, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 43890, + "offset": 61520, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 44141, - "length": 11, - "value": "\".Nominate\"" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 44223, + "offset": 61801, "length": 1, - "value": "1" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 44239, - "length": 12, - "value": "\"nominators\"" + "kind": "BooleanLiteral", + "offset": 61896, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 44677, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 61973, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 44983, + "offset": 62276, "length": 1, - "value": "1" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45211, + "offset": 62365, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45272, + "offset": 62442, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 62733, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 62819, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 45290, + "offset": 62896, "length": 4, "value": "true" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 45547, - "length": 17, - "value": "\".ChillAndUnbond\"" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 45635, + "offset": 63181, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 45651, - "length": 7, - "value": "\"value\"" + "kind": "BooleanLiteral", + "offset": 63277, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 46084, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 63354, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 46373, + "offset": 63659, "length": 1, - "value": "1" + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46603, + "offset": 63747, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46664, + "offset": 63824, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 64113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 64198, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 46682, + "offset": 64275, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 46930, - "length": 8, - "value": "\".Chill\"" + "kind": "IntegerLiteral", + "offset": 64558, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 47451, + "offset": 64652, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 47469, + "offset": 64729, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47691, - "length": 15, - "value": "\".SigningInput\"" + "kind": "IntegerLiteral", + "offset": 65030, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 47777, - "length": 1, - "value": "1" + "kind": "BooleanLiteral", + "offset": 65116, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47797, - "length": 12, - "value": "\"block_hash\"" + "kind": "BooleanLiteral", + "offset": 65193, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47816, + "offset": 66082, "length": 1, - "value": "2" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47836, - "length": 14, - "value": "\"genesis_hash\"" + "kind": "IntegerLiteral", + "offset": 66287, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47857, + "offset": 66480, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47873, - "length": 7, - "value": "\"nonce\"" + "kind": "IntegerLiteral", + "offset": 66667, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47887, + "offset": 66874, "length": 1, - "value": "4" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47907, - "length": 14, - "value": "\"spec_version\"" + "kind": "IntegerLiteral", + "offset": 67065, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47928, + "offset": 67250, "length": 1, - "value": "5" + "value": "7" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47948, - "length": 21, - "value": "\"transaction_version\"" + "kind": "IntegerLiteral", + "offset": 67453, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 47976, + "offset": 67640, "length": 1, - "value": "6" + "value": "9" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 47992, + "kind": "BooleanLiteral", + "offset": 67882, "length": 5, - "value": "\"tip\"" + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 48004, - "length": 1, - "value": "7" + "kind": "BooleanLiteral", + "offset": 67943, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 67961, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48020, - "length": 5, - "value": "\"era\"" + "offset": 68208, + "length": 7, + "value": "\".Bond\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48032, + "offset": 68286, "length": 1, - "value": "8" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48052, - "length": 13, - "value": "\"private_key\"" + "offset": 68302, + "length": 12, + "value": "\"controller\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48072, + "offset": 68321, "length": 1, - "value": "9" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48088, - "length": 9, - "value": "\"network\"" + "offset": 68337, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48104, - "length": 2, - "value": "10" + "offset": 68351, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48125, - "length": 14, - "value": "\"balance_call\"" + "offset": 68371, + "length": 20, + "value": "\"reward_destination\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48146, - "length": 2, - "value": "11" + "offset": 68398, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 48167, + "offset": 68418, "length": 14, - "value": "\"staking_call\"" + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48607, + "offset": 68858, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48692, + "offset": 68945, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48779, + "offset": 69026, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48861, + "offset": 69118, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 48949, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49044, + "offset": 69723, "length": 1, - "value": "6" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49123, + "offset": 69835, "length": 1, - "value": "7" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49205, + "offset": 69972, "length": 1, - "value": "8" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 49291, + "offset": 70089, "length": 1, - "value": "9" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49375, - "length": 2, - "value": "10" + "kind": "BooleanLiteral", + "offset": 70313, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49455, + "offset": 70358, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49532, - "length": 4, - "value": "true" + "offset": 70427, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 49827, - "length": 2, - "value": "11" + "kind": "BooleanLiteral", + "offset": 70486, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49907, + "offset": 70547, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 49984, + "offset": 70565, "length": 4, "value": "true" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 70823, + "length": 18, + "value": "\".BondAndNominate\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 50791, + "offset": 70912, "length": 1, "value": "1" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 70928, + "length": 12, + "value": "\"controller\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 50915, + "offset": 70947, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 50945, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 70963, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51024, + "offset": 70977, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51060, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 70997, + "length": 20, + "value": "\"reward_destination\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51145, + "offset": 71024, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51188, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 71040, + "length": 12, + "value": "\"nominators\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51280, + "offset": 71059, "length": 1, "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "IntegerLiteral", - "offset": 51388, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 71079, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51497, + "offset": 71519, "length": 1, - "value": "7" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51623, + "offset": 71606, "length": 1, - "value": "8" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51655, + "offset": 71687, "length": 1, - "value": "0" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51736, + "offset": 71779, "length": 1, - "value": "9" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 51962, - "length": 2, - "value": "10" + "offset": 71866, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 52160, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52407, - "length": 5, - "value": "false" + "offset": 72471, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52464, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72583, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52509, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72720, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52566, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72843, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 52637, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 72960, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52678, + "offset": 73206, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52721, + "offset": 73251, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52776, + "offset": 73320, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52825, + "offset": 73375, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52884, + "offset": 73434, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52945, + "offset": 73495, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 52963, + "offset": 73513, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53186, - "length": 16, - "value": "\".SigningOutput\"" + "offset": 73765, + "length": 12, + "value": "\".BondExtra\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53273, + "offset": 73848, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53289, - "length": 9, - "value": "\"encoded\"" + "offset": 73864, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53305, + "offset": 73878, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 53321, - "length": 7, - "value": "\"error\"" + "offset": 73898, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53335, + "offset": 74338, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "StringLiteral", - "offset": 53355, - "length": 15, - "value": "\"error_message\"" + "kind": "IntegerLiteral", + "offset": 74419, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53796, + "offset": 75013, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53879, + "offset": 75130, "length": 1, "value": "2" }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75354, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75413, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75474, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 75492, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75741, + "length": 9, + "value": "\".Unbond\"" + }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 53959, + "offset": 75821, "length": 1, - "value": "3" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75837, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 75851, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 75871, + "length": 14, + "value": "\"call_indices\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54260, + "offset": 76311, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54369, + "offset": 76392, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 54496, + "offset": 76986, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", - "kind": "BooleanLiteral", - "offset": 54712, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 77103, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54757, + "offset": 77321, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54816, + "offset": 77380, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54877, + "offset": 77441, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 54895, + "offset": 77459, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77708, + "length": 9, + "value": "\".Rebond\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 77788, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77804, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 77818, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", - "kind": "IntegerLiteral", - "offset": 482, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 77838, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 503, + "offset": 78278, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 78359, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 78953, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 79070, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 506, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79288, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 527, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79347, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79408, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 79426, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79685, + "length": 19, + "value": "\".WithdrawUnbonded\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 555, + "offset": 79775, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79795, + "length": 16, + "value": "\"slashing_spans\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 579, + "offset": 79818, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 79838, + "length": 14, + "value": "\"call_indices\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 607, + "offset": 80278, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 628, + "offset": 80367, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 80887, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 80973, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 81090, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 506, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81344, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 527, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81403, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 555, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81464, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 579, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 81482, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 607, - "length": 1, - "value": "7" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81733, + "length": 11, + "value": "\".Nominate\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 628, + "offset": 81815, "length": 1, - "value": "8" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81831, + "length": 12, + "value": "\"nominators\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 421, + "offset": 81850, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 81870, + "length": 14, + "value": "\"call_indices\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 452, + "offset": 82310, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 475, + "offset": 82397, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 506, + "offset": 83002, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 527, + "offset": 83119, "length": 1, - "value": "4" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 555, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83351, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 579, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83410, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 607, - "length": 1, - "value": "7" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83471, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", - "kind": "IntegerLiteral", - "offset": 628, - "length": 1, - "value": "8" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 83489, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83746, + "length": 17, + "value": "\".ChillAndUnbond\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "offset": 83834, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83850, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 694, - "length": 4, - "value": "1852" + "offset": 83864, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 83884, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "offset": 84324, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "offset": 84405, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 694, - "length": 4, - "value": "1852" + "offset": 84999, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 632, - "length": 2, - "value": "44" + "offset": 85116, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 652, - "length": 2, - "value": "49" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85350, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 672, - "length": 2, - "value": "84" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85409, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", - "kind": "IntegerLiteral", - "offset": 694, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85470, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 85488, "length": 4, - "value": "1852" + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 2933, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 85736, + "length": 8, + "value": "\".Chill\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 3357, + "offset": 85815, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "Array", - "offset": 6227, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 85835, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 6660, + "offset": 86275, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 6724, + "offset": 86874, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 6797, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87104, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 6924, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87165, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 11762, - "length": 17, - "value": "\"TW.Ripple.Proto\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 87183, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 11991, - "length": 17, - "value": "\".CurrencyAmount\"" + "offset": 87401, + "length": 11, + "value": "\".Identity\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12079, + "offset": 87483, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 12095, - "length": 10, - "value": "\"currency\"" + "offset": 87503, + "length": 22, + "value": "\"join_identity_as_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12112, + "offset": 87532, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 12128, - "length": 7, - "value": "\"value\"" + "offset": 87552, + "length": 19, + "value": "\"add_authorization\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12142, + "offset": 87997, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 12158, - "length": 8, - "value": "\"issuer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88095, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 12592, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88172, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 12677, + "offset": 88479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 12759, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88576, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 13057, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 88653, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13170, + "offset": 89588, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13285, + "offset": 89795, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 13501, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 13546, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13593, + "offset": 90039, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13654, + "offset": 90100, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 13672, + "offset": 90118, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 13897, + "offset": 90380, "length": 20, - "value": "\".OperationTrustSet\"" + "value": "\".JoinIdentityAsKey\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 13988, + "offset": 90471, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 14008, + "offset": 90491, "length": 14, - "value": "\"limit_amount\"" + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 14448, + "offset": 90512, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 90532, + "length": 9, + "value": "\"auth_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 90967, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15047, + "offset": 91057, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91649, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91684, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 91764, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15281, + "offset": 92016, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15342, + "offset": 92063, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 15360, + "offset": 92124, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 92142, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15584, + "offset": 92403, "length": 19, - "value": "\".OperationPayment\"" + "value": "\".AddAuthorization\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15674, + "offset": 92493, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15690, - "length": 8, - "value": "\"amount\"" + "offset": 92513, + "length": 14, + "value": "\"call_indices\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15705, + "offset": 92534, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15725, - "length": 17, - "value": "\"currency_amount\"" + "offset": 92550, + "length": 8, + "value": "\"target\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15749, + "offset": 92565, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15765, - "length": 13, - "value": "\"destination\"" + "offset": 92581, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 15785, + "offset": 92594, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 15805, - "length": 17, - "value": "\"destination_tag\"" + "offset": 92610, + "length": 8, + "value": "\"expiry\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16248, + "offset": 93044, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16505, + "offset": 93134, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 16589, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 16665, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 16965, + "offset": 93217, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17053, + "offset": 93300, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17747, + "offset": 93892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 17949, + "offset": 94011, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18102, + "offset": 94121, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18141, + "offset": 94156, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18228, + "offset": 94236, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18454, + "offset": 94486, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18511, + "offset": 94533, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18574, + "offset": 94578, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18635, + "offset": 94625, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 18653, + "offset": 94686, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 94704, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18881, - "length": 23, - "value": "\".OperationNFTokenBurn\"" + "offset": 94994, + "length": 7, + "value": "\".Data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 18975, + "offset": 95072, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 18995, - "length": 12, - "value": "\"nftoken_id\"" + "offset": 95088, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19433, + "offset": 95520, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 19734, + "offset": 95806, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 19964, + "offset": 96064, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20025, + "offset": 96125, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 20043, + "offset": 96143, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20278, - "length": 30, - "value": "\".OperationNFTokenCreateOffer\"" + "offset": 96430, + "length": 11, + "value": "\".AuthData\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20379, + "offset": 96512, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20399, - "length": 12, - "value": "\"nftoken_id\"" + "offset": 96528, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20418, + "offset": 96542, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 20434, - "length": 13, - "value": "\"destination\"" + "offset": 96558, + "length": 11, + "value": "\"extrinsic\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 20873, + "offset": 96576, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 20958, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "StringLiteral", + "offset": 96592, + "length": 11, + "value": "\"portfolio\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21262, + "offset": 97029, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 21387, + "offset": 97113, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21631, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21749, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 21767, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 22002, - "length": 30, - "value": "\".OperationNFTokenAcceptOffer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 97201, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22103, + "offset": 97792, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "StringLiteral", - "offset": 22123, - "length": 12, - "value": "\"sell_offer\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22561, + "offset": 97911, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 22862, + "offset": 98030, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23106, + "offset": 98290, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23167, + "offset": 98345, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 23185, + "offset": 98400, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 98461, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 98479, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23420, - "length": 30, - "value": "\".OperationNFTokenCancelOffer\"" + "offset": 98701, + "length": 15, + "value": "\".PolymeshCall\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23521, + "offset": 98787, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 23541, - "length": 14, - "value": "\"token_offers\"" + "offset": 98807, + "length": 15, + "value": "\"identity_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 23981, + "offset": 99248, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 99328, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 99405, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24288, + "offset": 100232, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24536, + "offset": 100460, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24597, + "offset": 100521, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 24615, + "offset": 100539, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24835, + "offset": 100761, "length": 15, "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24921, + "offset": 100847, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24937, - "length": 5, - "value": "\"fee\"" + "offset": 100867, + "length": 12, + "value": "\"block_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24949, + "offset": 100886, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 24965, - "length": 10, - "value": "\"sequence\"" + "offset": 100906, + "length": 14, + "value": "\"genesis_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 24982, + "offset": 100927, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25002, - "length": 22, - "value": "\"last_ledger_sequence\"" + "offset": 100943, + "length": 7, + "value": "\"nonce\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25031, + "offset": 100957, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25047, - "length": 9, - "value": "\"account\"" + "offset": 100977, + "length": 14, + "value": "\"spec_version\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25063, + "offset": 100998, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25079, - "length": 7, - "value": "\"flags\"" + "offset": 101018, + "length": 21, + "value": "\"transaction_version\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25093, + "offset": 101046, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25113, - "length": 13, - "value": "\"private_key\"" + "offset": 101062, + "length": 5, + "value": "\"tip\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25133, + "offset": 101074, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25153, - "length": 14, - "value": "\"op_trust_set\"" + "offset": 101090, + "length": 5, + "value": "\"era\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25174, + "offset": 101102, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25194, - "length": 12, - "value": "\"op_payment\"" + "offset": 101122, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25213, + "offset": 101142, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25233, - "length": 17, - "value": "\"op_nftoken_burn\"" + "offset": 101158, + "length": 9, + "value": "\"network\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25257, + "offset": 101174, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25278, - "length": 25, - "value": "\"op_nftoken_create_offer\"" + "offset": 101195, + "length": 15, + "value": "\"multi_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25310, + "offset": 101217, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25331, - "length": 25, - "value": "\"op_nftoken_accept_offer\"" + "offset": 101238, + "length": 14, + "value": "\"balance_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25363, + "offset": 101259, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25384, - "length": 25, - "value": "\"op_nftoken_cancel_offer\"" + "offset": 101280, + "length": 14, + "value": "\"staking_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25416, + "offset": 101301, "length": 2, - "value": "15" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 25437, - "length": 12, - "value": "\"public_key\"" + "offset": 101322, + "length": 15, + "value": "\"polymesh_call\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25875, + "offset": 101476, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 25954, + "offset": 101509, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26038, + "offset": 101549, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26132, + "offset": 101684, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 101716, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26216, + "offset": 103051, "length": 1, - "value": "5" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26297, + "offset": 103143, "length": 1, - "value": "6" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26383, + "offset": 103237, "length": 1, - "value": "7" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26470, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103326, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26549, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103421, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 26844, + "offset": 103523, "length": 1, - "value": "8" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 26930, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103609, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27009, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103697, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27302, + "offset": 103790, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27392, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "BooleanLiteral", - "offset": 27471, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 103881, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 27772, + "offset": 103976, "length": 2, - "value": "10" + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27870, + "offset": 104060, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 27949, + "offset": 104146, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28264, + "offset": 104464, "length": 2, - "value": "11" + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28362, + "offset": 104548, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28441, + "offset": 104634, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 28756, + "offset": 104952, "length": 2, - "value": "12" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28854, + "offset": 105041, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 28933, + "offset": 105127, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 29248, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29754, + "offset": 106061, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29830, + "offset": 106201, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29863, + "offset": 106240, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29944, + "offset": 106326, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 29987, + "offset": 106371, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", - "kind": "IntegerLiteral", - "offset": 30078, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30195, + "offset": 106463, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30225, + "offset": 106515, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30303, + "offset": 106614, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30425, + "offset": 106738, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30653, + "offset": 106857, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 30848, + "offset": 106999, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31051, + "offset": 107040, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "IntegerLiteral", + "offset": 107128, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 107174, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31268, + "offset": 107269, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31486, + "offset": 107516, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31704, + "offset": 107727, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 31853, + "offset": 107940, "length": 2, - "value": "15" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32056, + "offset": 108453, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32107, + "offset": 108529, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32178, + "offset": 108593, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32227, + "offset": 108669, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32272, + "offset": 108759, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32327, + "offset": 108819, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32390, + "offset": 108879, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32443, + "offset": 108953, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32504, + "offset": 109021, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 32522, + "offset": 109099, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109177, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109199, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109247, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109314, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", + "kind": "BooleanLiteral", + "offset": 109332, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32743, + "offset": 109555, "length": 16, "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32830, + "offset": 109642, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32846, + "offset": 109658, "length": 9, "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32862, + "offset": 109674, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32878, + "offset": 109690, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 32892, + "offset": 109704, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "StringLiteral", - "offset": 32912, + "offset": 109724, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33353, + "offset": 110165, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33436, + "offset": 110248, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33516, + "offset": 110328, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33817, + "offset": 110629, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 33926, + "offset": 110738, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "IntegerLiteral", - "offset": 34053, + "offset": 110865, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34265, + "offset": 111081, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34310, + "offset": 111126, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34369, + "offset": 111185, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34430, + "offset": 111246, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Polkadot.pb.swift", "kind": "BooleanLiteral", - "offset": 34448, + "offset": 111264, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 542, + "offset": 482, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PrivateKeyType.swift", "kind": "IntegerLiteral", - "offset": 562, + "offset": 503, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 1199, + "offset": 421, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 1334, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 2072, + "offset": 452, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 3025, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 475, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 3517, + "offset": 506, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 4027, + "offset": 527, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 4468, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 5794, + "offset": 579, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 5853, + "offset": 607, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 5990, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 6865, + "offset": 421, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 6924, + "offset": 452, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 7054, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 475, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 7527, + "offset": 506, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 8097, + "offset": 527, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 9073, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "Array", - "offset": 18438, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 579, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 18929, - "length": 17, - "value": "\"TW.Solana.Proto\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 607, + "length": 1, + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19152, - "length": 11, - "value": "\".Transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19234, + "offset": 421, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19250, - "length": 11, - "value": "\"recipient\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 452, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19268, + "offset": 475, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19284, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19298, + "offset": 506, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19314, - "length": 6, - "value": "\"memo\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19327, + "offset": 527, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 12, - "value": "\"references\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", + "kind": "IntegerLiteral", + "offset": 555, + "length": 1, + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19781, + "offset": 579, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19867, + "offset": 607, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/PublicKeyType.swift", "kind": "IntegerLiteral", - "offset": 19949, + "offset": 628, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20030, - "length": 1, - "value": "4" + "offset": 632, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20334, - "length": 1, - "value": "1" + "offset": 652, + "length": 2, + "value": "49" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20364, - "length": 1, - "value": "0" + "offset": 672, + "length": 2, + "value": "84" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20443, - "length": 1, - "value": "2" + "offset": 694, + "length": 4, + "value": "1852" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", "kind": "IntegerLiteral", - "offset": 20554, + "offset": 632, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 652, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 672, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 694, + "length": 4, + "value": "1852" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 652, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 672, + "length": 2, + "value": "84" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/Purpose.swift", + "kind": "IntegerLiteral", + "offset": 694, + "length": 4, + "value": "1852" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 2933, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 20677, + "offset": 3357, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20883, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "Array", + "offset": 6227, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20928, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6660, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 20971, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6724, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21026, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6797, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21087, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 6924, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 21105, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 11762, + "length": 17, + "value": "\"TW.Ripple.Proto\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21326, - "length": 16, - "value": "\".DelegateStake\"" + "offset": 11991, + "length": 17, + "value": "\".CurrencyAmount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21413, + "offset": 12079, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21433, - "length": 18, - "value": "\"validator_pubkey\"" + "offset": 12095, + "length": 10, + "value": "\"currency\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21458, + "offset": 12112, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21474, + "offset": 12128, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21488, + "offset": 12142, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 21508, - "length": 15, - "value": "\"stake_account\"" + "offset": 12158, + "length": 8, + "value": "\"issuer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 21949, + "offset": 12592, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22041, + "offset": 12677, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22123, + "offset": 12759, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22441, + "offset": 13057, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 22471, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22550, + "offset": 13170, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 22677, + "offset": 13285, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 22905, + "offset": 13501, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 22950, + "offset": 13546, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23009, + "offset": 13593, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23070, + "offset": 13654, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 23088, + "offset": 13672, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 23311, - "length": 18, - "value": "\".DeactivateStake\"" + "offset": 13897, + "length": 20, + "value": "\".OperationTrustSet\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 23400, + "offset": 13988, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 23420, - "length": 15, - "value": "\"stake_account\"" + "offset": 14008, + "length": 14, + "value": "\"limit_amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 23861, + "offset": 14448, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 24173, + "offset": 15047, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24399, + "offset": 15281, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24460, + "offset": 15342, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 24478, + "offset": 15360, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 24704, - "length": 21, - "value": "\".DeactivateAllStake\"" + "offset": 15584, + "length": 19, + "value": "\".OperationPayment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 24796, + "offset": 15674, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 24816, - "length": 16, - "value": "\"stake_accounts\"" + "offset": 15690, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 25258, + "offset": 15705, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15725, + "length": 17, + "value": "\"currency_amount\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 25573, + "offset": 15749, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15765, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 15785, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 15805, + "length": 17, + "value": "\"destination_tag\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 16248, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 25807, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 16505, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 25868, + "offset": 16589, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 25886, + "offset": 16665, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26107, - "length": 16, - "value": "\".WithdrawStake\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26194, + "offset": 16965, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26214, - "length": 15, - "value": "\"stake_account\"" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26236, + "offset": 17053, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 26252, - "length": 7, - "value": "\"value\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26685, + "offset": 17747, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 26774, + "offset": 17949, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27079, + "offset": 18102, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27109, + "offset": 18141, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27188, + "offset": 18228, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27410, + "offset": 18454, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27455, + "offset": 18511, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27516, + "offset": 18574, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 27534, + "offset": 18635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 18653, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27759, - "length": 20, - "value": "\".StakeAccountValue\"" + "offset": 18881, + "length": 23, + "value": "\".OperationNFTokenBurn\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27850, + "offset": 18975, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27870, - "length": 15, - "value": "\"stake_account\"" + "offset": 18995, + "length": 12, + "value": "\"nftoken_id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 27892, + "offset": 19433, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 19734, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 19964, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 20025, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 20043, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 27908, - "length": 7, - "value": "\"value\"" + "offset": 20278, + "length": 30, + "value": "\".OperationNFTokenCreateOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28341, + "offset": 20379, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 20399, + "length": 12, + "value": "\"nftoken_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28430, + "offset": 20418, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 20434, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28735, + "offset": 20873, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28765, + "offset": 20958, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 28844, + "offset": 21262, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 21387, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29074, + "offset": 21631, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29119, + "offset": 21688, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29180, + "offset": 21749, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 29198, + "offset": 21767, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 29422, - "length": 19, - "value": "\".WithdrawAllStake\"" + "offset": 22002, + "length": 30, + "value": "\".OperationNFTokenAcceptOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 29512, + "offset": 22103, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 29532, - "length": 16, - "value": "\"stake_accounts\"" + "offset": 22123, + "length": 12, + "value": "\"sell_offer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 29974, + "offset": 22561, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 30291, + "offset": 22862, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30521, + "offset": 23106, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30582, + "offset": 23167, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 30600, + "offset": 23185, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 30826, - "length": 21, - "value": "\".CreateTokenAccount\"" + "offset": 23420, + "length": 30, + "value": "\".OperationNFTokenCancelOffer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 30918, + "offset": 23521, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 30938, + "offset": 23541, "length": 14, - "value": "\"main_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 30959, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 30979, - "length": 20, - "value": "\"token_mint_address\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31006, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 31026, - "length": 15, - "value": "\"token_address\"" + "value": "\"token_offers\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 31467, + "offset": 23981, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31555, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 31648, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 31958, + "offset": 24288, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 32093, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 32220, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 32450, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 32517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32576, + "offset": 24536, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32637, + "offset": 24597, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 32655, + "offset": 24615, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 32876, - "length": 16, - "value": "\".TokenTransfer\"" + "offset": 24835, + "length": 15, + "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 32963, + "offset": 24921, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 32983, - "length": 20, - "value": "\"token_mint_address\"" + "offset": 24937, + "length": 5, + "value": "\"fee\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33010, + "offset": 24949, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33030, - "length": 22, - "value": "\"sender_token_address\"" + "offset": 24965, + "length": 10, + "value": "\"sequence\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33059, + "offset": 24982, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33079, - "length": 25, - "value": "\"recipient_token_address\"" + "offset": 25002, + "length": 22, + "value": "\"last_ledger_sequence\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33111, + "offset": 25031, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33127, - "length": 8, - "value": "\"amount\"" + "offset": 25047, + "length": 9, + "value": "\"account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33142, + "offset": 25063, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33158, - "length": 10, - "value": "\"decimals\"" + "offset": 25079, + "length": 7, + "value": "\"flags\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33175, + "offset": 25093, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33191, - "length": 6, - "value": "\"memo\"" + "offset": 25113, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33204, + "offset": 25133, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 33220, - "length": 12, - "value": "\"references\"" + "offset": 25153, + "length": 14, + "value": "\"op_trust_set\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33658, + "offset": 25174, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 33751, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25194, + "length": 12, + "value": "\"op_payment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 33846, + "offset": 25213, "length": 1, - "value": "3" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 33944, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25233, + "length": 17, + "value": "\"op_nftoken_burn\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34027, - "length": 1, - "value": "5" + "offset": 25257, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 34112, - "length": 1, - "value": "6" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25278, + "length": 25, + "value": "\"op_nftoken_create_offer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34193, - "length": 1, - "value": "7" + "offset": 25310, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25331, + "length": 25, + "value": "\"op_nftoken_accept_offer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34511, - "length": 1, - "value": "1" + "offset": 25363, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25384, + "length": 25, + "value": "\"op_nftoken_cancel_offer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34650, - "length": 1, - "value": "2" + "offset": 25416, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "StringLiteral", + "offset": 25437, + "length": 12, + "value": "\"public_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34795, + "offset": 25875, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34826, + "offset": 25954, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34906, + "offset": 26038, "length": 1, - "value": "4" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 34939, + "offset": 26132, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35021, + "offset": 26216, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35132, + "offset": 26297, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 35255, + "offset": 26383, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35485, + "offset": 26470, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35556, - "length": 5, - "value": "false" + "offset": 26549, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 35633, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 26844, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35680, + "offset": 26930, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" + "offset": 27009, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 27302, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35774, + "offset": 27392, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35829, - "length": 5, - "value": "false" + "offset": 27471, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 27772, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35890, + "offset": 27870, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 35908, + "offset": 27949, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36138, - "length": 25, - "value": "\".CreateAndTransferToken\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36234, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36254, - "length": 24, - "value": "\"recipient_main_address\"" + "offset": 28264, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 36285, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28362, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36305, - "length": 20, - "value": "\"token_mint_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28441, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36332, - "length": 1, - "value": "3" + "offset": 28756, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36352, - "length": 25, - "value": "\"recipient_token_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28854, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 36384, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "BooleanLiteral", + "offset": 28933, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36404, - "length": 22, - "value": "\"sender_token_address\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", + "kind": "IntegerLiteral", + "offset": 29248, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36433, + "offset": 29754, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36449, - "length": 8, - "value": "\"amount\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36464, + "offset": 29830, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36480, - "length": 10, - "value": "\"decimals\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36497, + "offset": 29863, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36513, - "length": 6, - "value": "\"memo\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36526, + "offset": 29944, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 36542, - "length": 12, - "value": "\"references\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 36980, + "offset": 29987, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37077, + "offset": 30078, "length": 1, - "value": "2" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37170, + "offset": 30195, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37268, + "offset": 30225, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37363, + "offset": 30303, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37446, + "offset": 30425, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37531, + "offset": 30653, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 37612, + "offset": 30848, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 37938, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38073, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38218, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38357, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 38388, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38468, + "offset": 31051, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38501, - "length": 1, - "value": "0" + "offset": 31268, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38583, - "length": 1, - "value": "6" + "offset": 31486, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38694, - "length": 1, - "value": "7" + "offset": 31704, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 38817, - "length": 1, - "value": "8" + "offset": 31853, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39073, + "offset": 32056, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39140, + "offset": 32107, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39217, + "offset": 32178, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39288, + "offset": 32227, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39335, + "offset": 32272, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39386, + "offset": 32327, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39429, + "offset": 32390, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39484, + "offset": 32443, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39545, + "offset": 32504, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 39563, + "offset": 32522, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39789, - "length": 21, - "value": "\".CreateNonceAccount\"" + "offset": 32743, + "length": 16, + "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39881, + "offset": 32830, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39901, - "length": 15, - "value": "\"nonce_account\"" + "offset": 32846, + "length": 9, + "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39923, + "offset": 32862, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39939, - "length": 6, - "value": "\"rent\"" + "offset": 32878, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 39952, + "offset": 32892, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "StringLiteral", - "offset": 39972, - "length": 27, - "value": "\"nonce_account_private_key\"" + "offset": 32912, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40425, + "offset": 33353, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40514, + "offset": 33436, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40595, + "offset": 33516, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 40916, + "offset": 33817, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 40945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 41023, + "offset": 33926, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "IntegerLiteral", - "offset": 41169, + "offset": 34053, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41401, + "offset": 34265, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41444, + "offset": 34310, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41523, + "offset": 34369, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41584, + "offset": 34430, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Ripple.pb.swift", "kind": "BooleanLiteral", - "offset": 41602, + "offset": 34448, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41830, - "length": 23, - "value": "\".WithdrawNonceAccount\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 41924, + "offset": 542, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41944, - "length": 15, - "value": "\"nonce_account\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 41966, + "offset": 562, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 41982, - "length": 11, - "value": "\"recipient\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42000, + "offset": 542, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 42016, - "length": 7, - "value": "\"value\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", + "kind": "IntegerLiteral", + "offset": 562, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42449, + "offset": 542, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/SS58AddressType.swift", "kind": "IntegerLiteral", - "offset": 42538, + "offset": 562, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42624, + "offset": 1199, "length": 1, - "value": "3" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 42929, - "length": 1, - "value": "1" + "kind": "Array", + "offset": 1334, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43050, + "offset": 2072, "length": 1, - "value": "2" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 43080, - "length": 1, - "value": "0" + "kind": "Array", + "offset": 3025, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43159, + "offset": 3517, "length": 1, - "value": "3" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43395, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 4027, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43448, - "length": 5, - "value": "false" + "kind": "Array", + "offset": 4468, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43493, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 5794, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43554, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 5853, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 43572, - "length": 4, - "value": "true" + "kind": "Array", + "offset": 5990, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 43799, - "length": 22, - "value": "\".AdvanceNonceAccount\"" + "kind": "IntegerLiteral", + "offset": 6865, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43892, + "offset": 6924, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 43912, - "length": 15, - "value": "\"nonce_account\"" + "kind": "Array", + "offset": 7054, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44353, + "offset": 7527, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44665, + "offset": 8097, "length": 1, - "value": "1" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44899, + "offset": 9073, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 44960, - "length": 5, - "value": "false" + "kind": "Array", + "offset": 18438, + "length": 2, + "value": "[]" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 44978, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 18929, + "length": 17, + "value": "\"TW.Solana.Proto\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45198, - "length": 15, - "value": "\".SigningInput\"" + "offset": 19152, + "length": 11, + "value": "\".Transfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45284, + "offset": 19234, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45304, - "length": 13, - "value": "\"private_key\"" + "offset": 19250, + "length": 11, + "value": "\"recipient\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45324, + "offset": 19268, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45344, - "length": 18, - "value": "\"recent_blockhash\"" + "offset": 19284, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45369, + "offset": 19298, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45389, - "length": 8, - "value": "\"v0_msg\"" + "offset": 19314, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45404, + "offset": 19327, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 45424, - "length": 22, - "value": "\"transfer_transaction\"" + "offset": 19343, + "length": 12, + "value": "\"references\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45453, + "offset": 19781, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45473, - "length": 28, - "value": "\"delegate_stake_transaction\"" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45508, + "offset": 19867, "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45528, - "length": 30, - "value": "\"deactivate_stake_transaction\"" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45565, + "offset": 19949, "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45585, - "length": 34, - "value": "\"deactivate_all_stake_transaction\"" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45626, + "offset": 20030, "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45646, - "length": 22, - "value": "\"withdraw_transaction\"" + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45675, + "offset": 20334, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45695, - "length": 26, - "value": "\"withdraw_all_transaction\"" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45728, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45749, - "length": 34, - "value": "\"create_token_account_transaction\"" + "offset": 20364, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45790, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45811, - "length": 28, - "value": "\"token_transfer_transaction\"" + "offset": 20443, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45846, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45867, - "length": 39, - "value": "\"create_and_transfer_token_transaction\"" + "offset": 20554, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 45913, - "length": 2, - "value": "13" + "offset": 20677, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45934, - "length": 22, - "value": "\"create_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 20883, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 45963, - "length": 2, - "value": "16" + "kind": "BooleanLiteral", + "offset": 20928, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 45984, - "length": 24, - "value": "\"withdraw_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 20971, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 46015, - "length": 2, - "value": "19" + "kind": "BooleanLiteral", + "offset": 21026, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 46036, - "length": 23, - "value": "\"advance_nonce_account\"" + "kind": "BooleanLiteral", + "offset": 21087, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 46066, - "length": 2, - "value": "14" + "kind": "BooleanLiteral", + "offset": 21105, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46083, - "length": 8, - "value": "\"sender\"" + "offset": 21326, + "length": 16, + "value": "\".DelegateStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46098, - "length": 2, - "value": "15" + "offset": 21413, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46119, - "length": 15, - "value": "\"nonce_account\"" + "offset": 21433, + "length": 18, + "value": "\"validator_pubkey\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46141, - "length": 2, - "value": "17" + "offset": 21458, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46162, - "length": 23, - "value": "\"fee_payer_private_key\"" + "offset": 21474, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46192, - "length": 2, - "value": "18" + "offset": 21488, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 46213, - "length": 11, - "value": "\"fee_payer\"" + "offset": 21508, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46650, + "offset": 21949, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46736, + "offset": 22041, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46828, + "offset": 22123, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 46908, + "offset": 22441, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 46986, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47066, - "length": 4, - "value": "true" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 47380, + "offset": 22471, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47463, - "length": 5, - "value": "false" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 47543, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 22550, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 47867, + "offset": 22677, "length": 1, - "value": "6" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 47952, + "offset": 22905, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48032, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 48360, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 48448, + "offset": 22950, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48528, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 48862, - "length": 1, - "value": "8" + "offset": 23009, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 48945, + "offset": 23070, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 49025, + "offset": 23088, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 49339, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49425, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49505, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 23311, + "length": 18, + "value": "\".DeactivateStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 49825, - "length": 2, - "value": "10" + "offset": 23400, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49914, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 23420, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 49994, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 23861, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 50328, - "length": 2, - "value": "11" + "offset": 24173, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50412, + "offset": 24399, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50492, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 50816, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 50909, + "offset": 24460, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 50989, + "offset": 24478, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 51331, - "length": 2, - "value": "13" + "kind": "StringLiteral", + "offset": 24704, + "length": 21, + "value": "\".DeactivateAllStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 51420, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 24796, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 51500, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 24816, + "length": 16, + "value": "\"stake_accounts\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 51812, - "length": 2, - "value": "14" + "offset": 25258, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 51896, - "length": 2, - "value": "15" + "offset": 25573, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 51986, - "length": 2, - "value": "16" + "kind": "BooleanLiteral", + "offset": 25807, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 52077, + "offset": 25868, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 52157, + "offset": 25886, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 52473, - "length": 2, - "value": "17" + "kind": "StringLiteral", + "offset": 26107, + "length": 16, + "value": "\".WithdrawStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 52568, - "length": 2, - "value": "18" + "offset": 26194, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 52654, - "length": 2, - "value": "19" + "kind": "StringLiteral", + "offset": 26214, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 52744, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 26236, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 52824, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 26252, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53652, + "offset": 26685, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53785, + "offset": 26774, "length": 1, "value": "2" }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 53815, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 53896, + "offset": 27079, "length": 1, - "value": "3" + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 54144, + "offset": 27109, "length": 1, - "value": "4" + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 54370, + "offset": 27188, "length": 1, - "value": "5" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 54600, - "length": 1, - "value": "6" + "kind": "BooleanLiteral", + "offset": 27410, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 54836, - "length": 1, - "value": "7" + "kind": "BooleanLiteral", + "offset": 27455, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55052, - "length": 1, - "value": "8" + "kind": "BooleanLiteral", + "offset": 27516, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55274, - "length": 1, - "value": "9" + "kind": "BooleanLiteral", + "offset": 27534, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55510, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 27759, + "length": 20, + "value": "\".StakeAccountValue\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 55737, - "length": 2, - "value": "11" + "offset": 27850, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 55982, - "length": 2, - "value": "12" + "kind": "StringLiteral", + "offset": 27870, + "length": 15, + "value": "\"stake_account\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56197, - "length": 2, - "value": "13" + "offset": 27892, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 56340, - "length": 2, - "value": "14" + "kind": "StringLiteral", + "offset": 27908, + "length": 7, + "value": "\"value\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56468, - "length": 2, - "value": "15" + "offset": 28341, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56618, - "length": 2, - "value": "16" + "offset": 28430, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56761, - "length": 2, - "value": "17" + "offset": 28735, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 56881, - "length": 2, - "value": "18" + "offset": 28765, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 57030, - "length": 2, - "value": "19" + "offset": 28844, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57251, + "offset": 29074, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57316, + "offset": 29119, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57361, + "offset": 29180, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57426, - "length": 5, - "value": "false" + "offset": 29198, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57473, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 29422, + "length": 19, + "value": "\".WithdrawAllStake\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57532, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 29512, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 57603, - "length": 5, - "value": "false" + "kind": "StringLiteral", + "offset": 29532, + "length": 16, + "value": "\"stake_accounts\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 29974, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 30291, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57654, + "offset": 30521, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57715, + "offset": 30582, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 57733, + "offset": 30600, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 57954, - "length": 16, - "value": "\".SigningOutput\"" + "offset": 30826, + "length": 21, + "value": "\".CreateTokenAccount\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58041, + "offset": 30918, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58057, - "length": 9, - "value": "\"encoded\"" + "offset": 30938, + "length": 14, + "value": "\"main_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58073, + "offset": 30959, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58089, - "length": 7, - "value": "\"error\"" + "offset": 30979, + "length": 20, + "value": "\"token_mint_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58103, + "offset": 31006, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 58123, + "offset": 31026, "length": 15, - "value": "\"error_message\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 58145, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "StringLiteral", - "offset": 58165, - "length": 13, - "value": "\"unsigned_tx\"" + "value": "\"token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58604, + "offset": 31467, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58688, + "offset": 31555, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58768, + "offset": 31648, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 58857, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 59157, + "offset": 31958, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 59266, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 59393, + "offset": 32093, "length": 1, - "value": "3" + "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 59516, + "offset": 32220, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 59728, - "length": 5, - "value": "false" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59773, + "offset": 32450, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59832, + "offset": 32517, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59887, + "offset": 32576, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59948, + "offset": 32637, "length": 5, "value": "false" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 59966, + "offset": 32655, "length": 4, "value": "true" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60190, - "length": 19, - "value": "\".PreSigningOutput\"" + "offset": 32876, + "length": 16, + "value": "\".TokenTransfer\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60280, + "offset": 32963, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60296, - "length": 9, - "value": "\"signers\"" + "offset": 32983, + "length": 20, + "value": "\"token_mint_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60312, + "offset": 33010, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60328, - "length": 6, - "value": "\"data\"" + "offset": 33030, + "length": 22, + "value": "\"sender_token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60341, + "offset": 33059, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60357, - "length": 7, - "value": "\"error\"" + "offset": 33079, + "length": 25, + "value": "\"recipient_token_address\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60371, + "offset": 33111, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 60391, - "length": 15, - "value": "\"error_message\"" + "offset": 33127, + "length": 8, + "value": "\"amount\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60832, + "offset": 33142, "length": 1, - "value": "1" + "value": "5" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "IntegerLiteral", - "offset": 60915, - "length": 1, - "value": "2" + "kind": "StringLiteral", + "offset": 33158, + "length": 10, + "value": "\"decimals\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 60995, + "offset": 33175, "length": 1, - "value": "3" + "value": "6" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 33191, + "length": 6, + "value": "\"memo\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61075, + "offset": 33204, "length": 1, - "value": "4" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 33220, + "length": 12, + "value": "\"references\"" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61376, + "offset": 33658, "length": 1, "value": "1" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61486, + "offset": 33751, "length": 1, "value": "2" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61595, + "offset": 33846, "length": 1, "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 61722, + "offset": 33944, "length": 1, "value": "4" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 61940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 61983, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62028, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62087, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62148, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", - "kind": "BooleanLiteral", - "offset": 62166, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 1268, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 1445, + "offset": 34027, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 2778, + "offset": 34112, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 3693, + "offset": 34193, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 4656, + "offset": 34511, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 6123, + "offset": 34650, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "Array", - "offset": 6208, - "length": 2, - "value": "[]" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 7815, + "offset": 34795, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 8630, + "offset": 34826, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 8687, + "offset": 34906, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 11672, + "offset": 34939, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16146, - "length": 18, - "value": "\"TW.Stellar.Proto\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16315, + "offset": 35021, "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16331, - "length": 25, - "value": "\"Predicate_unconditional\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16568, - "length": 8, - "value": "\".Asset\"" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16647, + "offset": 35132, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16663, - "length": 8, - "value": "\"issuer\"" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 16678, + "offset": 35255, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 16694, - "length": 11, - "value": "\"alphanum4\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35485, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17131, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35556, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17214, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35633, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17511, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35680, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 17632, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 35731, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17828, + "offset": 35774, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17881, + "offset": 35829, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17942, + "offset": 35890, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 17960, + "offset": 35908, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18191, + "offset": 36138, "length": 25, - "value": "\".OperationCreateAccount\"" + "value": "\".CreateAndTransferToken\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18287, + "offset": 36234, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18303, - "length": 13, - "value": "\"destination\"" + "offset": 36254, + "length": 24, + "value": "\"recipient_main_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18323, + "offset": 36285, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 18339, - "length": 8, - "value": "\"amount\"" + "offset": 36305, + "length": 20, + "value": "\"token_mint_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 18773, + "offset": 36332, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 18861, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 36352, + "length": 25, + "value": "\"recipient_token_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19164, + "offset": 36384, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 19195, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 36404, + "length": 22, + "value": "\"sender_token_address\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19274, + "offset": 36433, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19561, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 19640, - "length": 4, - "value": "true" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 19865, - "length": 19, - "value": "\".OperationPayment\"" + "offset": 36449, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19955, + "offset": 36464, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 19971, - "length": 13, - "value": "\"destination\"" + "offset": 36480, + "length": 10, + "value": "\"decimals\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 19991, + "offset": 36497, "length": 1, - "value": "2" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 20007, - "length": 7, - "value": "\"asset\"" + "offset": 36513, + "length": 6, + "value": "\"memo\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20021, + "offset": 36526, "length": 1, - "value": "3" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 20037, - "length": 8, - "value": "\"amount\"" + "offset": 36542, + "length": 12, + "value": "\"references\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20471, + "offset": 36980, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20559, + "offset": 37077, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 20643, + "offset": 37170, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21242, + "offset": 37268, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21353, + "offset": 37363, "length": 1, - "value": "2" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21388, + "offset": 37446, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 21467, + "offset": 37531, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21695, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21789, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21850, - "length": 5, - "value": "false" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 21868, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 37612, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22097, - "length": 23, - "value": "\".OperationChangeTrust\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 37938, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22191, + "offset": 38073, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22207, - "length": 7, - "value": "\"asset\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 38218, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22221, + "offset": 38357, "length": 1, - "value": "2" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 22241, - "length": 14, - "value": "\"valid_before\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 38388, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22681, + "offset": 38468, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 22765, + "offset": 38501, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23355, + "offset": 38583, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23395, + "offset": 38694, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 23479, + "offset": 38817, "length": 1, - "value": "2" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23705, + "offset": 39073, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23762, + "offset": 39140, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23823, + "offset": 39217, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 23841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24058, - "length": 11, - "value": "\".Claimant\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24140, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24156, - "length": 9, - "value": "\"account\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24172, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 24188, - "length": 11, - "value": "\"predicate\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24625, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 24709, - "length": 1, - "value": "2" + "offset": 39288, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 25006, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 39335, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 25143, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 39386, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25347, + "offset": 39429, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25400, + "offset": 39484, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25461, + "offset": 39545, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 25479, + "offset": 39563, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25719, - "length": 34, - "value": "\".OperationCreateClaimableBalance\"" + "offset": 39789, + "length": 21, + "value": "\".CreateNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25824, + "offset": 39881, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25840, - "length": 7, - "value": "\"asset\"" + "offset": 39901, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25854, + "offset": 39923, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25870, - "length": 8, - "value": "\"amount\"" + "offset": 39939, + "length": 6, + "value": "\"rent\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 25885, + "offset": 39952, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 25901, - "length": 11, - "value": "\"claimants\"" + "offset": 39972, + "length": 27, + "value": "\"nonce_account_private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26338, + "offset": 40425, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26422, + "offset": 40514, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 26504, + "offset": 40595, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27094, + "offset": 40916, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27129, + "offset": 40945, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27208, + "offset": 41023, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 27330, + "offset": 41169, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27578, + "offset": 41401, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27625, + "offset": 41444, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27678, + "offset": 41523, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27739, + "offset": 41584, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 27757, + "offset": 41602, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 27996, - "length": 33, - "value": "\".OperationClaimClaimableBalance\"" + "offset": 41830, + "length": 23, + "value": "\".WithdrawNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 28100, + "offset": 41924, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 28120, - "length": 12, - "value": "\"balance_id\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 28558, - "length": 1, - "value": "1" + "offset": 41944, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 28859, + "offset": 41966, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29172, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 29407, - "length": 11, - "value": "\".MemoVoid\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29919, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 29937, - "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 30154, + "offset": 41982, "length": 11, - "value": "\".MemoText\"" + "value": "\"recipient\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30236, + "offset": 42000, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 30252, - "length": 6, - "value": "\"text\"" + "offset": 42016, + "length": 7, + "value": "\"value\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30684, + "offset": 42449, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 30972, + "offset": 42538, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31170, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 31249, - "length": 4, - "value": "true" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 31464, - "length": 9, - "value": "\".MemoId\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 42624, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 31544, + "offset": 42929, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "StringLiteral", - "offset": 31560, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 31990, + "offset": 43050, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32191, + "offset": 43080, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32266, + "offset": 43159, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32456, + "offset": 43395, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32517, + "offset": 43448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 32535, + "offset": 43493, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 43554, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 43572, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 32752, - "length": 11, - "value": "\".MemoHash\"" + "offset": 43799, + "length": 22, + "value": "\".AdvanceNonceAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 32834, + "offset": 43892, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 32850, - "length": 6, - "value": "\"hash\"" + "offset": 43912, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 33282, + "offset": 44353, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 33568, + "offset": 44665, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33766, + "offset": 44899, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33827, + "offset": 44960, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 33845, + "offset": 44978, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34066, + "offset": 45198, "length": 15, "value": "\".SigningInput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34152, + "offset": 45284, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34168, - "length": 5, - "value": "\"fee\"" + "offset": 45304, + "length": 13, + "value": "\"private_key\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34180, + "offset": 45324, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34196, - "length": 10, - "value": "\"sequence\"" + "offset": 45344, + "length": 18, + "value": "\"recent_blockhash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34213, + "offset": 45369, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34229, - "length": 9, - "value": "\"account\"" + "offset": 45389, + "length": 8, + "value": "\"v0_msg\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34245, + "offset": 45404, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34265, - "length": 13, - "value": "\"private_key\"" + "offset": 45424, + "length": 22, + "value": "\"transfer_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34285, + "offset": 45453, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34301, - "length": 12, - "value": "\"passphrase\"" + "offset": 45473, + "length": 28, + "value": "\"delegate_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34320, + "offset": 45508, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34340, - "length": 19, - "value": "\"op_create_account\"" + "offset": 45528, + "length": 30, + "value": "\"deactivate_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34366, + "offset": 45565, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34386, - "length": 12, - "value": "\"op_payment\"" + "offset": 45585, + "length": 34, + "value": "\"deactivate_all_stake_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34405, + "offset": 45626, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34425, - "length": 17, - "value": "\"op_change_trust\"" + "offset": 45646, + "length": 22, + "value": "\"withdraw_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34449, + "offset": 45675, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 45695, + "length": 26, + "value": "\"withdraw_all_transaction\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 45728, "length": 2, - "value": "14" + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34470, - "length": 29, - "value": "\"op_create_claimable_balance\"" + "offset": 45749, + "length": 34, + "value": "\"create_token_account_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34506, + "offset": 45790, "length": 2, - "value": "15" + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34527, + "offset": 45811, "length": 28, - "value": "\"op_claim_claimable_balance\"" + "value": "\"token_transfer_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34562, - "length": 1, - "value": "9" + "offset": 45846, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34582, - "length": 11, - "value": "\"memo_void\"" + "offset": 45867, + "length": 39, + "value": "\"create_and_transfer_token_transaction\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34600, + "offset": 45913, "length": 2, - "value": "10" + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34621, - "length": 11, - "value": "\"memo_text\"" + "offset": 45934, + "length": 22, + "value": "\"create_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34639, + "offset": 45963, "length": 2, - "value": "11" + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34660, - "length": 9, - "value": "\"memo_id\"" + "offset": 45984, + "length": 24, + "value": "\"withdraw_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34676, + "offset": 46015, "length": 2, - "value": "12" + "value": "19" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34697, - "length": 11, - "value": "\"memo_hash\"" + "offset": 46036, + "length": 23, + "value": "\"advance_nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34715, + "offset": 46066, "length": 2, - "value": "13" + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34736, - "length": 18, - "value": "\"memo_return_hash\"" + "offset": 46083, + "length": 8, + "value": "\"sender\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 34761, + "offset": 46098, "length": 2, - "value": "16" + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 34782, - "length": 13, - "value": "\"time_bounds\"" + "offset": 46119, + "length": 15, + "value": "\"nonce_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35221, + "offset": 46141, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 46162, + "length": 23, + "value": "\"fee_payer_private_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 46192, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 46213, + "length": 11, + "value": "\"fee_payer\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 46650, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35300, + "offset": 46736, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35384, + "offset": 46828, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35468, + "offset": 46908, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 46986, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47066, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35554, + "offset": 47380, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47463, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 47543, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 35641, + "offset": 47867, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 35734, + "offset": 47952, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 35813, + "offset": 48032, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 36118, + "offset": 48360, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36205, + "offset": 48448, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36284, + "offset": 48528, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 36577, + "offset": 48862, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36668, + "offset": 48945, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 36747, + "offset": 49025, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37048, + "offset": 49339, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37127, + "offset": 49425, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37205, + "offset": 49505, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37495, + "offset": 49825, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37575, + "offset": 49914, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 37653, + "offset": 49994, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 37943, + "offset": 50328, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38021, + "offset": 50412, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38099, + "offset": 50492, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 38385, + "offset": 50816, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38465, + "offset": 50909, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38543, + "offset": 50989, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 38833, + "offset": 51331, "length": 2, "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38913, + "offset": 51420, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 38991, + "offset": 51500, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 39293, + "offset": 51812, "length": 2, "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 39396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 39475, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 51896, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 39798, + "offset": 51986, "length": 2, - "value": "15" + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 39900, + "offset": 52077, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 39979, + "offset": 52157, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40300, + "offset": 52473, "length": 2, - "value": "16" + "value": "17" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40807, - "length": 1, - "value": "0" + "offset": 52568, + "length": 2, + "value": "18" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40883, - "length": 1, - "value": "1" + "offset": 52654, + "length": 2, + "value": "19" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 52744, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 52824, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40916, + "offset": 53652, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 40997, + "offset": 53785, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 53815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41114, + "offset": 53896, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41236, + "offset": 54144, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41359, + "offset": 54370, "length": 1, "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41597, + "offset": 54600, "length": 1, "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41792, + "offset": 54836, "length": 1, "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 41995, + "offset": 55052, "length": 1, "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42244, + "offset": 55274, "length": 1, "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42436, + "offset": 55510, "length": 2, "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42625, + "offset": 55737, "length": 2, "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 42818, + "offset": 55982, "length": 2, "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43023, + "offset": 56197, "length": 2, "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43308, + "offset": 56340, "length": 2, "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43532, + "offset": 56468, "length": 2, "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43595, - "length": 1, - "value": "0" + "offset": 56618, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 43678, + "offset": 56761, "length": 2, - "value": "16" + "value": "17" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 56881, + "length": 2, + "value": "18" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "IntegerLiteral", + "offset": 57030, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43883, + "offset": 57251, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43934, + "offset": 57316, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 43983, + "offset": 57361, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44038, + "offset": 57426, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44093, + "offset": 57473, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44156, + "offset": 57532, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44217, + "offset": 57603, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44272, + "offset": 57654, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44333, + "offset": 57715, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "BooleanLiteral", - "offset": 44351, + "offset": 57733, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44573, + "offset": 57954, "length": 16, "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44660, + "offset": 58041, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44676, - "length": 11, - "value": "\"signature\"" + "offset": 58057, + "length": 9, + "value": "\"encoded\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44694, + "offset": 58073, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44710, + "offset": 58089, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 44724, + "offset": 58103, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "StringLiteral", - "offset": 44744, + "offset": 58123, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45185, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45271, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45351, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45657, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45766, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "IntegerLiteral", - "offset": 45893, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46111, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46156, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46215, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46276, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", - "kind": "BooleanLiteral", - "offset": 46294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 438, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 454, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 472, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 58145, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 58165, + "length": 13, + "value": "\"unsigned_tx\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 58604, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 454, + "offset": 58688, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 472, + "offset": 58768, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 58857, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", - "kind": "IntegerLiteral", - "offset": 420, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 438, + "offset": 59157, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 454, + "offset": 59266, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 472, + "offset": 59393, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 494, + "offset": 59516, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "StringLiteral", - "offset": 576, - "length": 48, - "value": "\"Public Global Stellar Network ; September 2015\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "StringLiteral", - "offset": 651, - "length": 29, - "value": "\"Kin Mainnet ; December 2018\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 467, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", - "kind": "IntegerLiteral", - "offset": 484, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59728, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59773, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 4, - "value": "0x30" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 460, - "length": 4, - "value": "0xc0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 486, - "length": 4, - "value": "0xc8" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", - "kind": "IntegerLiteral", - "offset": 513, + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59832, "length": 5, - "value": "0x118" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 456, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 502, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 456, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59887, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59948, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 502, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 59966, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 433, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60190, + "length": 19, + "value": "\".PreSigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 456, + "offset": 60280, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", - "kind": "IntegerLiteral", - "offset": 479, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60296, + "length": 9, + "value": "\"signers\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 502, + "offset": 60312, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 491, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60328, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 60341, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 530, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60357, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 60371, "length": 1, - "value": "3" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", - "kind": "IntegerLiteral", - "offset": 491, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "StringLiteral", + "offset": 60391, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 60832, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 530, + "offset": 60915, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 60995, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 491, + "offset": 61075, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 512, + "offset": 61376, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 530, + "offset": 61486, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 552, + "offset": 61595, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 1182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", "kind": "IntegerLiteral", - "offset": 1277, + "offset": 61722, "length": 1, - "value": "0" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 4630, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 61940, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 4669, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 61983, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5196, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62028, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5235, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62087, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "Array", - "offset": 5304, - "length": 2, - "value": "[]" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62148, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 5670, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Solana.pb.swift", + "kind": "BooleanLiteral", + "offset": 62166, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5709, + "offset": 1268, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5846, + "offset": 1445, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 5885, + "offset": 2778, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6255, + "offset": 3693, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6294, + "offset": 4656, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 6333, + "offset": 6123, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "Array", - "offset": 6407, + "offset": 6208, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8224, + "offset": 7815, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8263, + "offset": 8630, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 8939, + "offset": 8687, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 13675, + "offset": 11672, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 13714, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 16146, + "length": 18, + "value": "\"TW.Stellar.Proto\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 13749, + "offset": 16315, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20198, - "length": 20, - "value": "\"TW.Substrate.Proto\"" + "offset": 16331, + "length": 25, + "value": "\"Predicate_unconditional\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20422, - "length": 6, - "value": "\".Era\"" + "offset": 16568, + "length": 8, + "value": "\".Asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20499, + "offset": 16647, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20519, - "length": 14, - "value": "\"block_number\"" + "offset": 16663, + "length": 8, + "value": "\"issuer\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20540, + "offset": 16678, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 20556, - "length": 8, - "value": "\"period\"" + "offset": 16694, + "length": 11, + "value": "\"alphanum4\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 20990, + "offset": 17131, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21078, + "offset": 17214, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 21293, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21378, + "offset": 17511, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 21409, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 21489, + "offset": 17632, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21695, + "offset": 17828, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21742, + "offset": 17881, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21803, + "offset": 17942, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 21821, + "offset": 17960, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22039, - "length": 10, - "value": "\".Balance\"" + "offset": 18191, + "length": 25, + "value": "\".OperationCreateAccount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22120, + "offset": 18287, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22136, - "length": 10, - "value": "\"transfer\"" + "offset": 18303, + "length": 13, + "value": "\"destination\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22153, + "offset": 18323, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 22173, - "length": 16, - "value": "\"batch_transfer\"" + "offset": 18339, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22196, + "offset": 18773, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 22216, - "length": 16, - "value": "\"asset_transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 18861, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22239, + "offset": 19164, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 22259, - "length": 22, - "value": "\"batch_asset_transfer\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 19195, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 22707, + "offset": 19274, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 22796, + "offset": 19514, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 22873, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 23162, - "length": 1, - "value": "2" + "offset": 19561, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 23256, + "offset": 19622, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 23333, + "offset": 19640, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 19865, + "length": 19, + "value": "\".OperationPayment\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 19955, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 19971, + "length": 13, + "value": "\"destination\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 23632, + "offset": 19991, "length": 1, - "value": "3" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 23726, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 20007, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 23803, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20021, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 20037, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 24102, + "offset": 20471, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 24201, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20559, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 24278, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 20643, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25199, + "offset": 21242, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25400, + "offset": 21353, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25601, + "offset": 21388, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 25812, + "offset": 21467, "length": 1, - "value": "4" + "value": "3" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 21695, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 21742, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26056, + "offset": 21789, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26117, + "offset": 21850, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 26135, + "offset": 21868, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26388, - "length": 11, - "value": "\".Transfer\"" + "offset": 22097, + "length": 23, + "value": "\".OperationChangeTrust\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26470, + "offset": 22191, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26490, - "length": 14, - "value": "\"module_index\"" + "offset": 22207, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26511, + "offset": 22221, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 26531, + "offset": 22241, "length": 14, - "value": "\"method_index\"" + "value": "\"valid_before\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26552, + "offset": 22681, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26572, - "length": 12, - "value": "\"to_address\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26591, + "offset": 22765, "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26607, - "length": 7, - "value": "\"value\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 26621, + "offset": 23355, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 26637, - "length": 6, - "value": "\"memo\"" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27069, + "offset": 23395, "length": 1, - "value": "1" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27156, + "offset": 23479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27243, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23705, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27329, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23762, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27410, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23823, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27623, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 23841, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24058, + "length": 11, + "value": "\".Claimant\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27707, + "offset": 24140, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27743, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24156, + "length": 9, + "value": "\"account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 27827, + "offset": 24172, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 27948, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 24188, + "length": 11, + "value": "\"predicate\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 28060, + "offset": 24625, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 28171, + "offset": 24709, "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28403, - "length": 5, - "value": "false" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28460, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 25006, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 28513, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 25143, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28558, + "offset": 25347, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28601, + "offset": 25400, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28662, + "offset": 25461, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 28680, + "offset": 25479, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 28938, - "length": 16, - "value": "\".BatchTransfer\"" + "offset": 25719, + "length": 34, + "value": "\".OperationCreateClaimableBalance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29025, + "offset": 25824, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29045, - "length": 14, - "value": "\"module_index\"" + "offset": 25840, + "length": 7, + "value": "\"asset\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29066, + "offset": 25854, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29086, - "length": 14, - "value": "\"method_index\"" + "offset": 25870, + "length": 8, + "value": "\"amount\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29107, + "offset": 25885, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 29123, + "offset": 25901, "length": 11, - "value": "\"transfers\"" + "value": "\"claimants\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29560, + "offset": 26338, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29647, + "offset": 26422, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 29734, + "offset": 26504, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 29953, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30037, + "offset": 27094, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30073, + "offset": 27129, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30157, + "offset": 27208, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 30279, + "offset": 27330, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30521, + "offset": 27578, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30578, + "offset": 27625, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30631, + "offset": 27678, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30692, + "offset": 27739, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 30710, + "offset": 27757, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 30968, - "length": 16, - "value": "\".AssetTransfer\"" + "offset": 27996, + "length": 33, + "value": "\".OperationClaimClaimableBalance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31055, + "offset": 28100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31075, - "length": 14, - "value": "\"module_index\"" + "offset": 28120, + "length": 12, + "value": "\"balance_id\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 28558, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31096, + "offset": 28859, "length": 1, - "value": "2" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29111, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29172, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29190, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31116, - "length": 14, - "value": "\"method_index\"" + "offset": 29407, + "length": 11, + "value": "\".MemoVoid\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 31137, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 29937, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31157, - "length": 12, - "value": "\"to_address\"" + "offset": 30154, + "length": 11, + "value": "\".MemoText\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31176, + "offset": 30236, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31192, - "length": 7, - "value": "\"value\"" + "offset": 30252, + "length": 6, + "value": "\"text\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31206, + "offset": 30684, "length": 1, - "value": "5" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 30972, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31170, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31231, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 31249, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31226, - "length": 10, - "value": "\"asset_id\"" + "offset": 31464, + "length": 9, + "value": "\".MemoId\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31243, + "offset": 31544, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 31263, - "length": 14, - "value": "\"fee_asset_id\"" + "offset": 31560, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31703, + "offset": 31990, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31790, + "offset": 32191, "length": 1, - "value": "2" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 31877, + "offset": 32266, "length": 1, - "value": "3" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 31963, - "length": 1, - "value": "4" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32456, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 32044, - "length": 1, - "value": "5" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32517, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 32535, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 32752, + "length": 11, + "value": "\".MemoHash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32128, + "offset": 32834, "length": 1, - "value": "6" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 32850, + "length": 6, + "value": "\"hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32347, + "offset": 33282, "length": 1, - "value": "0" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32431, + "offset": 33568, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33766, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33827, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 33845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34066, + "length": 15, + "value": "\".SigningInput\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32467, + "offset": 34152, "length": 1, - "value": "0" + "value": "1" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34168, + "length": 5, + "value": "\"fee\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32551, + "offset": 34180, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34196, + "length": 10, + "value": "\"sequence\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32672, + "offset": 34213, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34229, + "length": 9, + "value": "\"account\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32784, + "offset": 34245, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34265, + "length": 13, + "value": "\"private_key\"" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32816, + "offset": 34285, "length": 1, - "value": "0" + "value": "5" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34301, + "length": 12, + "value": "\"passphrase\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32897, + "offset": 34320, "length": 1, - "value": "5" + "value": "6" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34340, + "length": 19, + "value": "\"op_create_account\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 32932, + "offset": 34366, "length": 1, - "value": "0" + "value": "7" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34386, + "length": 12, + "value": "\"op_payment\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33016, + "offset": 34405, "length": 1, - "value": "6" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33258, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34425, + "length": 17, + "value": "\"op_change_trust\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33315, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34449, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33368, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34470, + "length": 29, + "value": "\"op_create_claimable_balance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33413, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34506, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33462, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34527, + "length": 28, + "value": "\"op_claim_claimable_balance\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33517, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34562, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33578, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "StringLiteral", + "offset": 34582, + "length": 11, + "value": "\"memo_void\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 33596, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 34600, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 33859, - "length": 21, - "value": "\".BatchAssetTransfer\"" + "offset": 34621, + "length": 11, + "value": "\"memo_text\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33951, - "length": 1, - "value": "1" + "offset": 34639, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 33971, - "length": 14, - "value": "\"module_index\"" + "offset": 34660, + "length": 9, + "value": "\"memo_id\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 33992, - "length": 1, - "value": "2" + "offset": 34676, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34012, - "length": 14, - "value": "\"method_index\"" + "offset": 34697, + "length": 11, + "value": "\"memo_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34033, - "length": 1, - "value": "3" + "offset": 34715, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34053, - "length": 14, - "value": "\"fee_asset_id\"" + "offset": 34736, + "length": 18, + "value": "\"memo_return_hash\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34074, - "length": 1, - "value": "4" + "offset": 34761, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 34090, - "length": 11, - "value": "\"transfers\"" + "offset": 34782, + "length": 13, + "value": "\"time_bounds\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34527, + "offset": 35221, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34614, + "offset": 35300, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34701, + "offset": 35384, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 34788, + "offset": 35468, "length": 1, "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35007, + "offset": 35554, "length": 1, - "value": "0" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35091, + "offset": 35641, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35127, - "length": 1, - "value": "0" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 35734, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35211, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 35813, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35246, + "offset": 36118, "length": 1, - "value": "0" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 35330, - "length": 1, - "value": "3" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 36205, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 36284, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 35452, + "offset": 36577, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35704, + "offset": 36668, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35761, - "length": 5, - "value": "false" + "offset": 36747, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37048, + "length": 1, + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35816, + "offset": 37127, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35869, - "length": 5, - "value": "false" + "offset": 37205, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37495, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35930, + "offset": 37575, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 35948, + "offset": 37653, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 36172, - "length": 16, - "value": "\".Authorization\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 37943, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 36259, - "length": 1, - "value": "1" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38021, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 36279, - "length": 15, - "value": "\"join_identity\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38099, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 36720, - "length": 1, - "value": "1" + "offset": 38385, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 36819, + "offset": 38465, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 36896, + "offset": 38543, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 37723, - "length": 1, - "value": "1" + "offset": 38833, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 37955, + "offset": 38913, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 38991, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 39293, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 38016, + "offset": 39396, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 38034, + "offset": 39475, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38303, - "length": 15, - "value": "\".JoinIdentity\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38389, - "length": 1, - "value": "1" + "offset": 39798, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38409, - "length": 14, - "value": "\"module_index\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 39900, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 38430, - "length": 1, - "value": "2" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "BooleanLiteral", + "offset": 39979, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38450, - "length": 14, - "value": "\"method_index\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40300, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38471, + "offset": 40807, "length": 1, - "value": "3" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38487, - "length": 8, - "value": "\"target\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40883, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38502, + "offset": 40916, "length": 1, - "value": "4" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38518, - "length": 6, - "value": "\"data\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 40997, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38531, + "offset": 41114, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 38547, - "length": 8, - "value": "\"expiry\"" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", + "kind": "IntegerLiteral", + "offset": 41236, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 38981, + "offset": 41359, "length": 1, - "value": "1" + "value": "5" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39068, + "offset": 41597, "length": 1, - "value": "2" + "value": "6" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39155, + "offset": 41792, "length": 1, - "value": "3" + "value": "7" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39238, + "offset": 41995, "length": 1, - "value": "4" + "value": "8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39321, + "offset": 42244, "length": 1, - "value": "5" + "value": "9" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39832, - "length": 1, - "value": "0" + "offset": 42436, + "length": 2, + "value": "10" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39916, - "length": 1, - "value": "1" + "offset": 42625, + "length": 2, + "value": "11" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 39952, - "length": 1, - "value": "0" + "offset": 42818, + "length": 2, + "value": "12" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40036, - "length": 1, - "value": "2" + "offset": 43023, + "length": 2, + "value": "13" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40151, - "length": 1, - "value": "3" + "offset": 43308, + "length": 2, + "value": "14" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40261, - "length": 1, - "value": "4" + "offset": 43532, + "length": 2, + "value": "15" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40296, + "offset": 43595, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 40376, - "length": 1, - "value": "5" + "offset": 43678, + "length": 2, + "value": "16" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40628, + "offset": 43883, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40685, + "offset": 43934, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40732, + "offset": 43983, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40777, + "offset": 44038, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40824, + "offset": 44093, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40885, + "offset": 44156, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 40903, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 41197, - "length": 7, - "value": "\".Data\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 41275, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 41291, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 41723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 42009, - "length": 1, - "value": "1" + "offset": 44217, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42271, + "offset": 44272, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42332, + "offset": 44333, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 42350, + "offset": 44351, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42641, - "length": 11, - "value": "\".AuthData\"" + "offset": 44573, + "length": 16, + "value": "\".SigningOutput\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42723, + "offset": 44660, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42739, - "length": 7, - "value": "\"asset\"" + "offset": 44676, + "length": 11, + "value": "\"signature\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42753, + "offset": 44694, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42769, - "length": 11, - "value": "\"extrinsic\"" + "offset": 44710, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 42787, + "offset": 44724, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "StringLiteral", - "offset": 42803, - "length": 11, - "value": "\"portfolio\"" + "offset": 44744, + "length": 15, + "value": "\"error_message\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43240, + "offset": 45185, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43324, + "offset": 45271, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 43412, + "offset": 45351, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44003, + "offset": 45657, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44122, + "offset": 45766, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "IntegerLiteral", - "offset": 44241, + "offset": 45893, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44505, + "offset": 46111, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44560, + "offset": 46156, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44615, + "offset": 46215, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44676, + "offset": 46276, "length": 5, "value": "false" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Stellar.pb.swift", "kind": "BooleanLiteral", - "offset": 44694, + "offset": 46294, "length": 4, "value": "true" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 44913, - "length": 11, - "value": "\".Identity\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 44995, + "offset": 420, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 45015, - "length": 22, - "value": "\"join_identity_as_key\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 45463, + "offset": 438, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 45562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 45639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 46481, + "offset": 454, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46703, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46764, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 46782, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47046, - "length": 20, - "value": "\".JoinIdentityAsKey\"" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47137, + "offset": 472, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47157, - "length": 14, - "value": "\"module_index\"" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47178, + "offset": 494, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47198, - "length": 14, - "value": "\"method_index\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47219, + "offset": 420, "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 47239, - "length": 9, - "value": "\"auth_id\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47674, + "offset": 438, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47761, + "offset": 454, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 47848, + "offset": 472, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 48063, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48147, + "offset": 494, "length": 1, - "value": "1" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48183, + "offset": 420, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48267, + "offset": 438, "length": 1, - "value": "2" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48298, + "offset": 454, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 48378, + "offset": 472, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48630, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48734, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48795, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 48813, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49036, - "length": 15, - "value": "\".PolymeshCall\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarMemoType.swift", "kind": "IntegerLiteral", - "offset": 49122, + "offset": 494, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49142, - "length": 20, - "value": "\"authorization_call\"" + "value": "4" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 49169, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 49189, - "length": 15, - "value": "\"identity_call\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 49630, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 49716, - "length": 5, - "value": "false" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 48, + "value": "\"Public Global Stellar Network ; September 2015\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 49793, - "length": 4, - "value": "true" + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", + "kind": "StringLiteral", + "offset": 651, + "length": 29, + "value": "\"Kin Mainnet ; December 2018\"" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 50100, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 50181, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 50258, - "length": 4, - "value": "true" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 51185, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 51384, + "offset": 467, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51638, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51699, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 51717, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 51940, - "length": 15, - "value": "\".SigningInput\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarPassphrase.swift", "kind": "IntegerLiteral", - "offset": 52026, + "offset": 484, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52046, - "length": 12, - "value": "\"block_hash\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 52065, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52085, - "length": 14, - "value": "\"genesis_hash\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 52106, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52122, - "length": 7, - "value": "\"nonce\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52136, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52156, - "length": 14, - "value": "\"spec_version\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52177, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52197, - "length": 21, - "value": "\"transaction_version\"" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52241, - "length": 5, - "value": "\"tip\"" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52253, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52269, + "offset": 513, "length": 5, - "value": "\"era\"" + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52281, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52301, - "length": 13, - "value": "\"private_key\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52321, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52337, - "length": 9, - "value": "\"network\"" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52353, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52374, - "length": 14, - "value": "\"balance_call\"" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52395, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52416, - "length": 15, - "value": "\"multi_address\"" + "offset": 513, + "length": 5, + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52438, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 52459, - "length": 15, - "value": "\"polymesh_call\"" + "offset": 439, + "length": 4, + "value": "0x30" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52613, - "length": 1, - "value": "0" + "offset": 460, + "length": 4, + "value": "0xc0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52646, - "length": 1, - "value": "0" + "offset": 486, + "length": 4, + "value": "0xc8" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StellarVersionByte.swift", "kind": "IntegerLiteral", - "offset": 52686, - "length": 1, - "value": "0" + "offset": 513, + "length": 5, + "value": "0x118" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 52821, + "offset": 433, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 52928, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54294, + "offset": 456, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54386, + "offset": 479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54480, + "offset": 502, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 54569, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54664, + "offset": 433, "length": 1, - "value": "5" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54766, + "offset": 456, "length": 1, - "value": "6" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54852, + "offset": 479, "length": 1, - "value": "7" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 54940, + "offset": 502, "length": 1, - "value": "8" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 55033, + "offset": 433, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55123, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 55208, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 55294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55612, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 55707, - "length": 2, - "value": "12" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56419, + "offset": 456, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56559, + "offset": 479, "length": 1, "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 56598, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryption.swift", "kind": "IntegerLiteral", - "offset": 56684, + "offset": 502, "length": 1, "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56729, + "offset": 491, "length": 1, "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56821, + "offset": 512, "length": 1, - "value": "4" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56873, + "offset": 530, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 56972, + "offset": 552, "length": 1, - "value": "5" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57096, + "offset": 491, "length": 1, - "value": "6" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57215, + "offset": 512, "length": 1, - "value": "7" + "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57357, + "offset": 530, "length": 1, - "value": "8" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57398, + "offset": 552, "length": 1, - "value": "0" + "value": "3" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 57485, + "offset": 491, "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57633, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 57684, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57779, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "IntegerLiteral", - "offset": 57908, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58395, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58471, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58535, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58701, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58761, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58821, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58895, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 58963, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59041, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59119, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59197, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59219, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59267, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59334, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 59352, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 59576, - "length": 16, - "value": "\".SigningOutput\"" + "value": "0" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 59663, + "offset": 512, "length": 1, "value": "1" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "StringLiteral", - "offset": 59679, - "length": 9, - "value": "\"encoded\"" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 60114, + "offset": 530, "length": 1, - "value": "1" + "value": "2" }, { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", + "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Enums\/StoredKeyEncryptionLevel.swift", "kind": "IntegerLiteral", - "offset": 60409, + "offset": 552, "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60688, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Substrate.pb.swift", - "kind": "BooleanLiteral", - "offset": 60706, - "length": 4, - "value": "true" + "value": "3" }, { "filePath": "\/Users\/sergeybalashov\/Projects\/wallet-core\/swift\/Sources\/Generated\/Protobuf\/Sui.pb.swift", diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index b433375..fa33775 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name WalletCore // swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @@ -694,15 +694,12 @@ public struct AsnParser { } public typealias BarzContractAddressInput = WalletCore.TW_Barz_Proto_ContractAddressInput public struct TW_Barz_Proto_ContractAddressInput { + public var entryPoint: Swift.String public var factory: Swift.String - public var diamondCutFacet: Swift.String public var accountFacet: Swift.String public var verificationFacet: Swift.String - public var tokenReceiverFacet: Swift.String - public var diamondLoupeFacet: Swift.String - public var diamondInit: Swift.String public var facetRegistry: Swift.String - public var entryPoint: Swift.String + public var defaultFallback: Swift.String public var bytecode: Swift.String public var publicKey: Swift.String public var unknownFields: SwiftProtobuf.UnknownStorage @@ -2154,6 +2151,7 @@ public struct Cardano { public static func minAdaAmount(tokenBundle: Foundation.Data) -> Swift.UInt64 public static func outputMinAdaAmount(toAddress: Swift.String, tokenBundle: Foundation.Data, coinsPerUtxoByte: Swift.String) -> Swift.String? public static func getStakingAddress(baseAddress: Swift.String) -> Swift.String + public static func getByronAddress(publicKey: WalletCore.PublicKey) -> Swift.String } extension WalletCore.CoinType { public func address(string: Swift.String) -> WalletCore.AnyAddress? @@ -2342,6 +2340,9 @@ public enum CoinType : Swift.UInt32, Swift.CaseIterable { case rootstock case thetaFuel case confluxeSpace + case acala + case acalaEVM + case opBNBtestnet public init?(rawValue: Swift.UInt32) public typealias AllCases = [WalletCore.CoinType] public typealias RawValue = Swift.UInt32 @@ -3950,6 +3951,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case okc case thundertoken case cfxevm + case opbnb case gochain case meter case celo @@ -3964,6 +3966,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case kcc case zksync case heco + case acalaevm case metis case polygonzkevm case moonbeam @@ -7764,8 +7767,12 @@ public struct PBKDF2 { public static func hmacSha512(password: Foundation.Data, salt: Foundation.Data, iterations: Swift.UInt32, dkLen: Swift.UInt32) -> Foundation.Data? } public typealias PolkadotEra = WalletCore.TW_Polkadot_Proto_Era +public typealias PolkadotCustomCallIndices = WalletCore.TW_Polkadot_Proto_CustomCallIndices +public typealias PolkadotCallIndices = WalletCore.TW_Polkadot_Proto_CallIndices public typealias PolkadotBalance = WalletCore.TW_Polkadot_Proto_Balance public typealias PolkadotStaking = WalletCore.TW_Polkadot_Proto_Staking +public typealias PolkadotIdentity = WalletCore.TW_Polkadot_Proto_Identity +public typealias PolkadotPolymeshCall = WalletCore.TW_Polkadot_Proto_PolymeshCall public typealias PolkadotSigningInput = WalletCore.TW_Polkadot_Proto_SigningInput public typealias PolkadotSigningOutput = WalletCore.TW_Polkadot_Proto_SigningOutput public typealias PolkadotRewardDestination = WalletCore.TW_Polkadot_Proto_RewardDestination @@ -7791,6 +7798,25 @@ public struct TW_Polkadot_Proto_Era { public var unknownFields: SwiftProtobuf.UnknownStorage public init() } +public struct TW_Polkadot_Proto_CustomCallIndices { + public var moduleIndex: Swift.Int32 + public var methodIndex: Swift.Int32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() +} +public struct TW_Polkadot_Proto_CallIndices { + public var variant: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant? + public var custom: WalletCore.TW_Polkadot_Proto_CustomCallIndices { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_Variant : Swift.Equatable { + case custom(WalletCore.TW_Polkadot_Proto_CustomCallIndices) + public static func == (a: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant, b: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_Balance { public var messageOneof: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof? public var transfer: WalletCore.TW_Polkadot_Proto_Balance.Transfer { @@ -7801,23 +7827,80 @@ public struct TW_Polkadot_Proto_Balance { get set } + public var assetTransfer: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer { + get + set + } + public var batchAssetTransfer: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case transfer(WalletCore.TW_Polkadot_Proto_Balance.Transfer) case batchTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) + case assetTransfer(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) + case batchAssetTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) public static func == (a: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool } public struct Transfer { public var toAddress: Swift.String public var value: Foundation.Data + public var memo: Swift.String + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BatchTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.Transfer] public var unknownFields: SwiftProtobuf.UnknownStorage public init() } + public struct AssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var toAddress: Swift.String + public var value: Foundation.Data + public var assetID: Swift.UInt32 + public var feeAssetID: Swift.UInt32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct BatchAssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var feeAssetID: Swift.UInt32 + public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer] + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public struct TW_Polkadot_Proto_Staking { @@ -7875,6 +7958,14 @@ public struct TW_Polkadot_Proto_Staking { public var controller: Swift.String public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } @@ -7883,52 +7974,233 @@ public struct TW_Polkadot_Proto_Staking { public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BondExtra { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Unbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Rebond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct WithdrawUnbonded { public var slashingSpans: Swift.Int32 + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Nominate { public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct ChillAndUnbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Chill { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public init() +} +public struct TW_Polkadot_Proto_Identity { + public var messageOneof: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof? + public var joinIdentityAsKey: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey { + get + set + } + public var addAuthorization: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case joinIdentityAsKey(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) + case addAuthorization(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) + public static func == (a: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool + } + public struct JoinIdentityAsKey { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var authID: Swift.UInt64 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AddAuthorization { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var target: Swift.String + public var data: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData { + get + set + } + public var hasData: Swift.Bool { + get + } + public mutating func clearData() + public var expiry: Swift.UInt64 public var unknownFields: SwiftProtobuf.UnknownStorage + public struct DataMessage { + public var data: Foundation.Data + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AuthData { + public var asset: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasAsset: Swift.Bool { + get + } + public mutating func clearAsset() + public var extrinsic: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasExtrinsic: Swift.Bool { + get + } + public mutating func clearExtrinsic() + public var portfolio: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasPortfolio: Swift.Bool { + get + } + public mutating func clearPortfolio() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public init() } +public struct TW_Polkadot_Proto_PolymeshCall { + public var messageOneof: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof? + public var identityCall: WalletCore.TW_Polkadot_Proto_Identity { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case identityCall(WalletCore.TW_Polkadot_Proto_Identity) + public static func == (a: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_SigningInput { - public var blockHash: Foundation.Data - public var genesisHash: Foundation.Data - public var nonce: Swift.UInt64 - public var specVersion: Swift.UInt32 - public var transactionVersion: Swift.UInt32 - public var tip: Foundation.Data + public var blockHash: Foundation.Data { + get + set + } + public var genesisHash: Foundation.Data { + get + set + } + public var nonce: Swift.UInt64 { + get + set + } + public var specVersion: Swift.UInt32 { + get + set + } + public var transactionVersion: Swift.UInt32 { + get + set + } + public var tip: Foundation.Data { + get + set + } public var era: WalletCore.TW_Polkadot_Proto_Era { get set @@ -7937,9 +8209,22 @@ public struct TW_Polkadot_Proto_SigningInput { get } public mutating func clearEra() - public var privateKey: Foundation.Data - public var network: Swift.UInt32 - public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? + public var privateKey: Foundation.Data { + get + set + } + public var network: Swift.UInt32 { + get + set + } + public var multiAddress: Swift.Bool { + get + set + } + public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? { + get + set + } public var balanceCall: WalletCore.TW_Polkadot_Proto_Balance { get set @@ -7948,10 +8233,15 @@ public struct TW_Polkadot_Proto_SigningInput { get set } + public var polymeshCall: WalletCore.TW_Polkadot_Proto_PolymeshCall { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case balanceCall(WalletCore.TW_Polkadot_Proto_Balance) case stakingCall(WalletCore.TW_Polkadot_Proto_Staking) + case polymeshCall(WalletCore.TW_Polkadot_Proto_PolymeshCall) public static func == (a: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool } public init() @@ -7976,6 +8266,26 @@ extension WalletCore.TW_Polkadot_Proto_Era : SwiftProtobuf.Message, SwiftProtobu get } } +extension WalletCore.TW_Polkadot_Proto_CustomCallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices, rhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_CallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CallIndices, rhs: WalletCore.TW_Polkadot_Proto_CallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8006,6 +8316,26 @@ extension WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer : SwiftProtobuf.Mes get } } +extension WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Staking : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8106,28 +8436,88 @@ extension WalletCore.TW_Polkadot_Proto_Staking.Chill : SwiftProtobuf.Message, Sw get } } -extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity, rhs: WalletCore.TW_Polkadot_Proto_Identity) -> Swift.Bool public var hashValue: Swift.Int { get } } -extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool public var hashValue: Swift.Int { get } } -@_hasMissingDesignatedInitializers final public class PrivateKey { - public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_PolymeshCall, rhs: WalletCore.TW_Polkadot_Proto_PolymeshCall) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers final public class PrivateKey { + public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool final public var data: Foundation.Data { get } @@ -9296,419 +9686,6 @@ public enum StoredKeyEncryptionLevel : Swift.UInt32, Swift.CaseIterable { get } } -public typealias SubstrateEra = WalletCore.TW_Substrate_Proto_Era -public typealias SubstrateBalance = WalletCore.TW_Substrate_Proto_Balance -public typealias SubstrateAuthorization = WalletCore.TW_Substrate_Proto_Authorization -public typealias SubstrateIdentity = WalletCore.TW_Substrate_Proto_Identity -public typealias SubstratePolymeshCall = WalletCore.TW_Substrate_Proto_PolymeshCall -public typealias SubstrateSigningInput = WalletCore.TW_Substrate_Proto_SigningInput -public typealias SubstrateSigningOutput = WalletCore.TW_Substrate_Proto_SigningOutput -public struct TW_Substrate_Proto_Era { - public var blockNumber: Swift.UInt64 - public var period: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -public struct TW_Substrate_Proto_Balance { - public var messageOneof: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof? - public var transfer: WalletCore.TW_Substrate_Proto_Balance.Transfer { - get - set - } - public var batchTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer { - get - set - } - public var assetTransfer: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer { - get - set - } - public var batchAssetTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case transfer(WalletCore.TW_Substrate_Proto_Balance.Transfer) - case batchTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) - case assetTransfer(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) - case batchAssetTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) - public static func == (a: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool - } - public struct Transfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var memo: Swift.String - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.Transfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var assetID: Swift.UInt32 - public var feeAssetID: Swift.UInt32 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchAssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var feeAssetID: Swift.UInt32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.AssetTransfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_Authorization { - public var messageOneof: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof? - public var joinIdentity: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentity(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) - public static func == (a: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentity { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var target: Swift.String - public var data: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData { - get - set - } - public var hasData: Swift.Bool { - get - } - public mutating func clearData() - public var expiry: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public struct DataMessage { - public var data: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AuthData { - public var asset: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasAsset: Swift.Bool { - get - } - public mutating func clearAsset() - public var extrinsic: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasExtrinsic: Swift.Bool { - get - } - public mutating func clearExtrinsic() - public var portfolio: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasPortfolio: Swift.Bool { - get - } - public mutating func clearPortfolio() - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() - } - public init() -} -public struct TW_Substrate_Proto_Identity { - public var messageOneof: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof? - public var joinIdentityAsKey: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentityAsKey(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) - public static func == (a: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentityAsKey { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var authID: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_PolymeshCall { - public var messageOneof: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof? - public var authorizationCall: WalletCore.TW_Substrate_Proto_Authorization { - get - set - } - public var identityCall: WalletCore.TW_Substrate_Proto_Identity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case authorizationCall(WalletCore.TW_Substrate_Proto_Authorization) - case identityCall(WalletCore.TW_Substrate_Proto_Identity) - public static func == (a: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningInput { - public var blockHash: Foundation.Data { - get - set - } - public var genesisHash: Foundation.Data { - get - set - } - public var nonce: Swift.UInt64 { - get - set - } - public var specVersion: Swift.UInt32 { - get - set - } - public var transactionVersion: Swift.UInt32 { - get - set - } - public var tip: Foundation.Data { - get - set - } - public var era: WalletCore.TW_Substrate_Proto_Era { - get - set - } - public var hasEra: Swift.Bool { - get - } - public mutating func clearEra() - public var privateKey: Foundation.Data { - get - set - } - public var network: Swift.Int32 { - get - set - } - public var messageOneof: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof? { - get - set - } - public var balanceCall: WalletCore.TW_Substrate_Proto_Balance { - get - set - } - public var multiAddress: Swift.Bool { - get - set - } - public var polymeshCall: WalletCore.TW_Substrate_Proto_PolymeshCall { - get - set - } - public var hasPolymeshCall: Swift.Bool { - get - } - public mutating func clearPolymeshCall() - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case balanceCall(WalletCore.TW_Substrate_Proto_Balance) - public static func == (a: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningOutput { - public var encoded: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -extension WalletCore.TW_Substrate_Proto_Era : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Era, rhs: WalletCore.TW_Substrate_Proto_Era) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance, rhs: WalletCore.TW_Substrate_Proto_Balance) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.Transfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.Transfer, rhs: WalletCore.TW_Substrate_Proto_Balance.Transfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization, rhs: WalletCore.TW_Substrate_Proto_Authorization) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity, rhs: WalletCore.TW_Substrate_Proto_Identity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_PolymeshCall, rhs: WalletCore.TW_Substrate_Proto_PolymeshCall) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningInput, rhs: WalletCore.TW_Substrate_Proto_SigningInput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningOutput, rhs: WalletCore.TW_Substrate_Proto_SigningOutput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers final public class SubstrateAddress : WalletCore.Address { - public static func == (lhs: WalletCore.SubstrateAddress, rhs: WalletCore.SubstrateAddress) -> Swift.Bool - public static func isValidString(string: Swift.String, network: Swift.Int32) -> Swift.Bool - final public var description: Swift.String { - get - } - public init?(string: Swift.String, network: Swift.Int32) - public init(publicKey: WalletCore.PublicKey, network: Swift.Int32) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class SubstrateSigner { - public static func message(data: Foundation.Data) -> Foundation.Data - public static func transaction(data: Foundation.Data, publicKey: Foundation.Data, signature: Foundation.Data) -> Foundation.Data - @objc deinit -} public typealias SuiSignDirect = WalletCore.TW_Sui_Proto_SignDirect public typealias SuiSigningInput = WalletCore.TW_Sui_Proto_SigningInput public typealias SuiSigningOutput = WalletCore.TW_Sui_Proto_SigningOutput @@ -11140,6 +11117,8 @@ extension WalletCore.TW_Waves_Proto_SigningOutput : SwiftProtobuf.Message, Swift } public struct WebAuthn { public static func getPublicKey(attestationObject: Foundation.Data) -> WalletCore.PublicKey? + public static func getRSValues(signature: Foundation.Data) -> Foundation.Data + public static func reconstructOriginalMessage(authenticatorData: Foundation.Data, clientDataJSON: Foundation.Data) -> Foundation.Data } public typealias ZilliqaTransaction = WalletCore.TW_Zilliqa_Proto_Transaction public typealias ZilliqaSigningInput = WalletCore.TW_Zilliqa_Proto_SigningInput diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 6837836..0a2d557 100644 Binary files a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index b433375..fa33775 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) +// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name WalletCore // swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation @@ -694,15 +694,12 @@ public struct AsnParser { } public typealias BarzContractAddressInput = WalletCore.TW_Barz_Proto_ContractAddressInput public struct TW_Barz_Proto_ContractAddressInput { + public var entryPoint: Swift.String public var factory: Swift.String - public var diamondCutFacet: Swift.String public var accountFacet: Swift.String public var verificationFacet: Swift.String - public var tokenReceiverFacet: Swift.String - public var diamondLoupeFacet: Swift.String - public var diamondInit: Swift.String public var facetRegistry: Swift.String - public var entryPoint: Swift.String + public var defaultFallback: Swift.String public var bytecode: Swift.String public var publicKey: Swift.String public var unknownFields: SwiftProtobuf.UnknownStorage @@ -2154,6 +2151,7 @@ public struct Cardano { public static func minAdaAmount(tokenBundle: Foundation.Data) -> Swift.UInt64 public static func outputMinAdaAmount(toAddress: Swift.String, tokenBundle: Foundation.Data, coinsPerUtxoByte: Swift.String) -> Swift.String? public static func getStakingAddress(baseAddress: Swift.String) -> Swift.String + public static func getByronAddress(publicKey: WalletCore.PublicKey) -> Swift.String } extension WalletCore.CoinType { public func address(string: Swift.String) -> WalletCore.AnyAddress? @@ -2342,6 +2340,9 @@ public enum CoinType : Swift.UInt32, Swift.CaseIterable { case rootstock case thetaFuel case confluxeSpace + case acala + case acalaEVM + case opBNBtestnet public init?(rawValue: Swift.UInt32) public typealias AllCases = [WalletCore.CoinType] public typealias RawValue = Swift.UInt32 @@ -3950,6 +3951,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case okc case thundertoken case cfxevm + case opbnb case gochain case meter case celo @@ -3964,6 +3966,7 @@ public enum EthereumChainID : Swift.UInt32, Swift.CaseIterable { case kcc case zksync case heco + case acalaevm case metis case polygonzkevm case moonbeam @@ -7764,8 +7767,12 @@ public struct PBKDF2 { public static func hmacSha512(password: Foundation.Data, salt: Foundation.Data, iterations: Swift.UInt32, dkLen: Swift.UInt32) -> Foundation.Data? } public typealias PolkadotEra = WalletCore.TW_Polkadot_Proto_Era +public typealias PolkadotCustomCallIndices = WalletCore.TW_Polkadot_Proto_CustomCallIndices +public typealias PolkadotCallIndices = WalletCore.TW_Polkadot_Proto_CallIndices public typealias PolkadotBalance = WalletCore.TW_Polkadot_Proto_Balance public typealias PolkadotStaking = WalletCore.TW_Polkadot_Proto_Staking +public typealias PolkadotIdentity = WalletCore.TW_Polkadot_Proto_Identity +public typealias PolkadotPolymeshCall = WalletCore.TW_Polkadot_Proto_PolymeshCall public typealias PolkadotSigningInput = WalletCore.TW_Polkadot_Proto_SigningInput public typealias PolkadotSigningOutput = WalletCore.TW_Polkadot_Proto_SigningOutput public typealias PolkadotRewardDestination = WalletCore.TW_Polkadot_Proto_RewardDestination @@ -7791,6 +7798,25 @@ public struct TW_Polkadot_Proto_Era { public var unknownFields: SwiftProtobuf.UnknownStorage public init() } +public struct TW_Polkadot_Proto_CustomCallIndices { + public var moduleIndex: Swift.Int32 + public var methodIndex: Swift.Int32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() +} +public struct TW_Polkadot_Proto_CallIndices { + public var variant: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant? + public var custom: WalletCore.TW_Polkadot_Proto_CustomCallIndices { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_Variant : Swift.Equatable { + case custom(WalletCore.TW_Polkadot_Proto_CustomCallIndices) + public static func == (a: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant, b: WalletCore.TW_Polkadot_Proto_CallIndices.OneOf_Variant) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_Balance { public var messageOneof: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof? public var transfer: WalletCore.TW_Polkadot_Proto_Balance.Transfer { @@ -7801,23 +7827,80 @@ public struct TW_Polkadot_Proto_Balance { get set } + public var assetTransfer: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer { + get + set + } + public var batchAssetTransfer: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case transfer(WalletCore.TW_Polkadot_Proto_Balance.Transfer) case batchTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer) + case assetTransfer(WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) + case batchAssetTransfer(WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) public static func == (a: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool } public struct Transfer { public var toAddress: Swift.String public var value: Foundation.Data + public var memo: Swift.String + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BatchTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.Transfer] public var unknownFields: SwiftProtobuf.UnknownStorage public init() } + public struct AssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var toAddress: Swift.String + public var value: Foundation.Data + public var assetID: Swift.UInt32 + public var feeAssetID: Swift.UInt32 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct BatchAssetTransfer { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var feeAssetID: Swift.UInt32 + public var transfers: [WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer] + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public struct TW_Polkadot_Proto_Staking { @@ -7875,6 +7958,14 @@ public struct TW_Polkadot_Proto_Staking { public var controller: Swift.String public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } @@ -7883,52 +7974,233 @@ public struct TW_Polkadot_Proto_Staking { public var value: Foundation.Data public var rewardDestination: WalletCore.TW_Polkadot_Proto_RewardDestination public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct BondExtra { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Unbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Rebond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct WithdrawUnbonded { public var slashingSpans: Swift.Int32 + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Nominate { public var nominators: [Swift.String] + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct ChillAndUnbond { public var value: Foundation.Data + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() public var unknownFields: SwiftProtobuf.UnknownStorage public init() } public struct Chill { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public init() +} +public struct TW_Polkadot_Proto_Identity { + public var messageOneof: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof? + public var joinIdentityAsKey: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey { + get + set + } + public var addAuthorization: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case joinIdentityAsKey(WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) + case addAuthorization(WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) + public static func == (a: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool + } + public struct JoinIdentityAsKey { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var authID: Swift.UInt64 + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AddAuthorization { + public var callIndices: WalletCore.TW_Polkadot_Proto_CallIndices { + get + set + } + public var hasCallIndices: Swift.Bool { + get + } + public mutating func clearCallIndices() + public var target: Swift.String + public var data: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData { + get + set + } + public var hasData: Swift.Bool { + get + } + public mutating func clearData() + public var expiry: Swift.UInt64 public var unknownFields: SwiftProtobuf.UnknownStorage + public struct DataMessage { + public var data: Foundation.Data + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } + public struct AuthData { + public var asset: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasAsset: Swift.Bool { + get + } + public mutating func clearAsset() + public var extrinsic: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasExtrinsic: Swift.Bool { + get + } + public mutating func clearExtrinsic() + public var portfolio: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage { + get + set + } + public var hasPortfolio: Swift.Bool { + get + } + public mutating func clearPortfolio() + public var unknownFields: SwiftProtobuf.UnknownStorage + public init() + } public init() } public init() } +public struct TW_Polkadot_Proto_PolymeshCall { + public var messageOneof: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof? + public var identityCall: WalletCore.TW_Polkadot_Proto_Identity { + get + set + } + public var unknownFields: SwiftProtobuf.UnknownStorage + public enum OneOf_MessageOneof : Swift.Equatable { + case identityCall(WalletCore.TW_Polkadot_Proto_Identity) + public static func == (a: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool + } + public init() +} public struct TW_Polkadot_Proto_SigningInput { - public var blockHash: Foundation.Data - public var genesisHash: Foundation.Data - public var nonce: Swift.UInt64 - public var specVersion: Swift.UInt32 - public var transactionVersion: Swift.UInt32 - public var tip: Foundation.Data + public var blockHash: Foundation.Data { + get + set + } + public var genesisHash: Foundation.Data { + get + set + } + public var nonce: Swift.UInt64 { + get + set + } + public var specVersion: Swift.UInt32 { + get + set + } + public var transactionVersion: Swift.UInt32 { + get + set + } + public var tip: Foundation.Data { + get + set + } public var era: WalletCore.TW_Polkadot_Proto_Era { get set @@ -7937,9 +8209,22 @@ public struct TW_Polkadot_Proto_SigningInput { get } public mutating func clearEra() - public var privateKey: Foundation.Data - public var network: Swift.UInt32 - public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? + public var privateKey: Foundation.Data { + get + set + } + public var network: Swift.UInt32 { + get + set + } + public var multiAddress: Swift.Bool { + get + set + } + public var messageOneof: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof? { + get + set + } public var balanceCall: WalletCore.TW_Polkadot_Proto_Balance { get set @@ -7948,10 +8233,15 @@ public struct TW_Polkadot_Proto_SigningInput { get set } + public var polymeshCall: WalletCore.TW_Polkadot_Proto_PolymeshCall { + get + set + } public var unknownFields: SwiftProtobuf.UnknownStorage public enum OneOf_MessageOneof : Swift.Equatable { case balanceCall(WalletCore.TW_Polkadot_Proto_Balance) case stakingCall(WalletCore.TW_Polkadot_Proto_Staking) + case polymeshCall(WalletCore.TW_Polkadot_Proto_PolymeshCall) public static func == (a: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Polkadot_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool } public init() @@ -7976,6 +8266,26 @@ extension WalletCore.TW_Polkadot_Proto_Era : SwiftProtobuf.Message, SwiftProtobu get } } +extension WalletCore.TW_Polkadot_Proto_CustomCallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices, rhs: WalletCore.TW_Polkadot_Proto_CustomCallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_CallIndices : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_CallIndices, rhs: WalletCore.TW_Polkadot_Proto_CallIndices) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8006,6 +8316,26 @@ extension WalletCore.TW_Polkadot_Proto_Balance.BatchTransfer : SwiftProtobuf.Mes get } } +extension WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.AssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Polkadot_Proto_Balance.BatchAssetTransfer) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} extension WalletCore.TW_Polkadot_Proto_Staking : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap @@ -8106,28 +8436,88 @@ extension WalletCore.TW_Polkadot_Proto_Staking.Chill : SwiftProtobuf.Message, Sw get } } -extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity, rhs: WalletCore.TW_Polkadot_Proto_Identity) -> Swift.Bool public var hashValue: Swift.Int { get } } -extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { +extension WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { public static let protoMessageName: Swift.String public static let _protobuf_nameMap: SwiftProtobuf._NameMap public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Polkadot_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool public var hashValue: Swift.Int { get } } -@_hasMissingDesignatedInitializers final public class PrivateKey { - public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.DataMessage) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData, rhs: WalletCore.TW_Polkadot_Proto_Identity.AddAuthorization.AuthData) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_PolymeshCall, rhs: WalletCore.TW_Polkadot_Proto_PolymeshCall) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningInput, rhs: WalletCore.TW_Polkadot_Proto_SigningInput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +extension WalletCore.TW_Polkadot_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + public static let protoMessageName: Swift.String + public static let _protobuf_nameMap: SwiftProtobuf._NameMap + public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder + public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor + public static func == (lhs: WalletCore.TW_Polkadot_Proto_SigningOutput, rhs: WalletCore.TW_Polkadot_Proto_SigningOutput) -> Swift.Bool + public var hashValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers final public class PrivateKey { + public static func isValid(data: Foundation.Data, curve: WalletCore.Curve) -> Swift.Bool final public var data: Foundation.Data { get } @@ -9296,419 +9686,6 @@ public enum StoredKeyEncryptionLevel : Swift.UInt32, Swift.CaseIterable { get } } -public typealias SubstrateEra = WalletCore.TW_Substrate_Proto_Era -public typealias SubstrateBalance = WalletCore.TW_Substrate_Proto_Balance -public typealias SubstrateAuthorization = WalletCore.TW_Substrate_Proto_Authorization -public typealias SubstrateIdentity = WalletCore.TW_Substrate_Proto_Identity -public typealias SubstratePolymeshCall = WalletCore.TW_Substrate_Proto_PolymeshCall -public typealias SubstrateSigningInput = WalletCore.TW_Substrate_Proto_SigningInput -public typealias SubstrateSigningOutput = WalletCore.TW_Substrate_Proto_SigningOutput -public struct TW_Substrate_Proto_Era { - public var blockNumber: Swift.UInt64 - public var period: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -public struct TW_Substrate_Proto_Balance { - public var messageOneof: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof? - public var transfer: WalletCore.TW_Substrate_Proto_Balance.Transfer { - get - set - } - public var batchTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer { - get - set - } - public var assetTransfer: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer { - get - set - } - public var batchAssetTransfer: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case transfer(WalletCore.TW_Substrate_Proto_Balance.Transfer) - case batchTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) - case assetTransfer(WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) - case batchAssetTransfer(WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) - public static func == (a: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Balance.OneOf_MessageOneof) -> Swift.Bool - } - public struct Transfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var memo: Swift.String - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.Transfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var toAddress: Swift.String - public var value: Foundation.Data - public var assetID: Swift.UInt32 - public var feeAssetID: Swift.UInt32 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct BatchAssetTransfer { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var feeAssetID: Swift.UInt32 - public var transfers: [WalletCore.TW_Substrate_Proto_Balance.AssetTransfer] - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_Authorization { - public var messageOneof: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof? - public var joinIdentity: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentity(WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) - public static func == (a: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Authorization.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentity { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var target: Swift.String - public var data: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData { - get - set - } - public var hasData: Swift.Bool { - get - } - public mutating func clearData() - public var expiry: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public struct DataMessage { - public var data: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public struct AuthData { - public var asset: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasAsset: Swift.Bool { - get - } - public mutating func clearAsset() - public var extrinsic: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasExtrinsic: Swift.Bool { - get - } - public mutating func clearExtrinsic() - public var portfolio: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage { - get - set - } - public var hasPortfolio: Swift.Bool { - get - } - public mutating func clearPortfolio() - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() - } - public init() -} -public struct TW_Substrate_Proto_Identity { - public var messageOneof: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof? - public var joinIdentityAsKey: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case joinIdentityAsKey(WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) - public static func == (a: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_Identity.OneOf_MessageOneof) -> Swift.Bool - } - public struct JoinIdentityAsKey { - public var moduleIndex: Swift.Int32 - public var methodIndex: Swift.Int32 - public var authID: Swift.UInt64 - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() - } - public init() -} -public struct TW_Substrate_Proto_PolymeshCall { - public var messageOneof: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof? - public var authorizationCall: WalletCore.TW_Substrate_Proto_Authorization { - get - set - } - public var identityCall: WalletCore.TW_Substrate_Proto_Identity { - get - set - } - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case authorizationCall(WalletCore.TW_Substrate_Proto_Authorization) - case identityCall(WalletCore.TW_Substrate_Proto_Identity) - public static func == (a: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_PolymeshCall.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningInput { - public var blockHash: Foundation.Data { - get - set - } - public var genesisHash: Foundation.Data { - get - set - } - public var nonce: Swift.UInt64 { - get - set - } - public var specVersion: Swift.UInt32 { - get - set - } - public var transactionVersion: Swift.UInt32 { - get - set - } - public var tip: Foundation.Data { - get - set - } - public var era: WalletCore.TW_Substrate_Proto_Era { - get - set - } - public var hasEra: Swift.Bool { - get - } - public mutating func clearEra() - public var privateKey: Foundation.Data { - get - set - } - public var network: Swift.Int32 { - get - set - } - public var messageOneof: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof? { - get - set - } - public var balanceCall: WalletCore.TW_Substrate_Proto_Balance { - get - set - } - public var multiAddress: Swift.Bool { - get - set - } - public var polymeshCall: WalletCore.TW_Substrate_Proto_PolymeshCall { - get - set - } - public var hasPolymeshCall: Swift.Bool { - get - } - public mutating func clearPolymeshCall() - public var unknownFields: SwiftProtobuf.UnknownStorage - public enum OneOf_MessageOneof : Swift.Equatable { - case balanceCall(WalletCore.TW_Substrate_Proto_Balance) - public static func == (a: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof, b: WalletCore.TW_Substrate_Proto_SigningInput.OneOf_MessageOneof) -> Swift.Bool - } - public init() -} -public struct TW_Substrate_Proto_SigningOutput { - public var encoded: Foundation.Data - public var unknownFields: SwiftProtobuf.UnknownStorage - public init() -} -extension WalletCore.TW_Substrate_Proto_Era : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Era, rhs: WalletCore.TW_Substrate_Proto_Era) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance, rhs: WalletCore.TW_Substrate_Proto_Balance) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.Transfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.Transfer, rhs: WalletCore.TW_Substrate_Proto_Balance.Transfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.AssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.AssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer, rhs: WalletCore.TW_Substrate_Proto_Balance.BatchAssetTransfer) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization, rhs: WalletCore.TW_Substrate_Proto_Authorization) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.DataMessage) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData, rhs: WalletCore.TW_Substrate_Proto_Authorization.JoinIdentity.AuthData) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity, rhs: WalletCore.TW_Substrate_Proto_Identity) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey, rhs: WalletCore.TW_Substrate_Proto_Identity.JoinIdentityAsKey) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_PolymeshCall : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_PolymeshCall, rhs: WalletCore.TW_Substrate_Proto_PolymeshCall) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningInput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningInput, rhs: WalletCore.TW_Substrate_Proto_SigningInput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -extension WalletCore.TW_Substrate_Proto_SigningOutput : SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - public static let protoMessageName: Swift.String - public static let _protobuf_nameMap: SwiftProtobuf._NameMap - public mutating func decodeMessage(decoder: inout D) throws where D : SwiftProtobuf.Decoder - public func traverse(visitor: inout V) throws where V : SwiftProtobuf.Visitor - public static func == (lhs: WalletCore.TW_Substrate_Proto_SigningOutput, rhs: WalletCore.TW_Substrate_Proto_SigningOutput) -> Swift.Bool - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers final public class SubstrateAddress : WalletCore.Address { - public static func == (lhs: WalletCore.SubstrateAddress, rhs: WalletCore.SubstrateAddress) -> Swift.Bool - public static func isValidString(string: Swift.String, network: Swift.Int32) -> Swift.Bool - final public var description: Swift.String { - get - } - public init?(string: Swift.String, network: Swift.Int32) - public init(publicKey: WalletCore.PublicKey, network: Swift.Int32) - @objc deinit -} -@_hasMissingDesignatedInitializers final public class SubstrateSigner { - public static func message(data: Foundation.Data) -> Foundation.Data - public static func transaction(data: Foundation.Data, publicKey: Foundation.Data, signature: Foundation.Data) -> Foundation.Data - @objc deinit -} public typealias SuiSignDirect = WalletCore.TW_Sui_Proto_SignDirect public typealias SuiSigningInput = WalletCore.TW_Sui_Proto_SigningInput public typealias SuiSigningOutput = WalletCore.TW_Sui_Proto_SigningOutput @@ -11140,6 +11117,8 @@ extension WalletCore.TW_Waves_Proto_SigningOutput : SwiftProtobuf.Message, Swift } public struct WebAuthn { public static func getPublicKey(attestationObject: Foundation.Data) -> WalletCore.PublicKey? + public static func getRSValues(signature: Foundation.Data) -> Foundation.Data + public static func reconstructOriginalMessage(authenticatorData: Foundation.Data, clientDataJSON: Foundation.Data) -> Foundation.Data } public typealias ZilliqaTransaction = WalletCore.TW_Zilliqa_Proto_Transaction public typealias ZilliqaSigningInput = WalletCore.TW_Zilliqa_Proto_SigningInput diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/WalletCore b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/WalletCore index 4f097e0..d443e9f 100755 Binary files a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/WalletCore and b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/WalletCore differ diff --git a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/_CodeSignature/CodeResources b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/_CodeSignature/CodeResources index 4bce199..9d3b188 100644 --- a/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/_CodeSignature/CodeResources +++ b/WalletCore.xcframework/ios-arm64_x86_64-simulator/WalletCore.framework/_CodeSignature/CodeResources @@ -70,11 +70,11 @@ Headers/TWCardano.h - A41RZ74t817cN/cz1h0rRM/IbLg= + pjGDlTk9l66UHhT8RsESDxn3xoE= Headers/TWCoinType.h - kGRJLC/anzZ1WSRF1yDLK9VgW5Q= + 1Oov18CihW7A+b+mSR2UBVcbWaQ= Headers/TWCoinTypeConfiguration.h @@ -122,7 +122,7 @@ Headers/TWEthereumChainID.h - lPjPh9Qq85qiDaagaIboubKMp3o= + rLW/ZXOzqHFGWPW5czNPZ1sRlEs= Headers/TWEthereumMessageSigner.h @@ -252,14 +252,6 @@ 7xEXMGFu8MSm5O39YghGoR4m9ag= - Headers/TWSubstrateAddress.h - - RsiVozdhJtnnjSin94GY6f2BOmI= - - Headers/TWSubstrateSigner.h - - ZL6ecUY70LRIlpA3Xovg02Kw9TQ= - Headers/TWTHORChainSwap.h uP3swZBYT48l0FyDEaN57VTPjoA= @@ -278,59 +270,59 @@ Headers/TWWebAuthn.h - jjqH6NBRFvdeGdZPFm2al+gQMJ4= + +aJjFjQPfdb2tGuXiRqvghVow1U= Headers/WalletCore-Swift.h - pAyhWsk5JWeRLyMh/DKKEWToz0Q= + r0+eZvXZYCyiFQHSq2q40LqTxRA= Headers/WalletCore.h - IaTWzbR2Hr5NCfaKQh8zOuKyc/E= + XR1DwIMFiQ+GksB9bISbW8+jKfU= Info.plist - wBuJcV8CPw1IMEjNtFE/Hxs72/8= + zd/IzXrBleO6DbEWjzEGyYGA+Wc= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.abi.json - ie5v2wzZvBh4d4xjXIFVxmB6AYY= + sfrlrf6nFNu8jG8ZaP6UcKClo0Y= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - Li0PS0J/GIfckzbSvPbCflRoefE= + gx3ZvGsLRNI+kdg53KL+4VOCGhw= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc - bdO48JOOAdnUIu4D9zOBX93jhrY= + yomFznxtxhcYg1HlaytRXLB958U= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface - Li0PS0J/GIfckzbSvPbCflRoefE= + gx3ZvGsLRNI+kdg53KL+4VOCGhw= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftmodule - 2LbxGD7vgVMjqIIkrkPvd0tAa1g= + 8GkTsP0uDYlX2IjIvHl+i2orRIo= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.abi.json - ie5v2wzZvBh4d4xjXIFVxmB6AYY= + sfrlrf6nFNu8jG8ZaP6UcKClo0Y= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - Orr18TKOBAPfzF78PgzsYl/TpiI= + 4ZWnPkiUwlHVBF3NivFxcVKvA8w= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - EZR7uQLMYYiE/ZJ7oTSDwcMfZvs= + 8Nr8EUbOe5yDcbIiHKss5X8q9rc= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - Orr18TKOBAPfzF78PgzsYl/TpiI= + 4ZWnPkiUwlHVBF3NivFxcVKvA8w= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - uhG5ArXgvUB5Ve5ZWIm1xqt2WrQ= + Sn6+dm9p2GDPx1xR4G/N/sZSQh0= Modules/module.modulemap @@ -455,14 +447,14 @@ hash2 - Av0vFVnjtOReG6QUNrMjX+6Sq7hCTw5j2bzgHj0+iM0= + 7NLVXJIIlNm40ZQUEHgdVX0RdS0wDbcbkxP7l6aBGs8= Headers/TWCoinType.h hash2 - ov1Ijc8U0Fd8VrYfZ8n2Tj2R9iuL1rwRoG5TXdJvwtk= + MV8Oou0S+itKO9W/AGpPYxqi4b93d9WAn8uQg5uYQi8= Headers/TWCoinTypeConfiguration.h @@ -546,7 +538,7 @@ hash2 - 9waFHQ9XIyQQr09oF0Ae5lEoTV67+bhJr+hbwNix1PU= + qPRWyhFFpvyq0UEgT91eUSuC3ZlHKWUiayFglxwdkzI= Headers/TWEthereumMessageSigner.h @@ -773,20 +765,6 @@ bxX3LhqRdHsFRWu/Wz0Yz2nAI02KgJtDlC35ijBCMVw= - Headers/TWSubstrateAddress.h - - hash2 - - ilramxE0ZZN6iio13wWwQsnMGB3sM90c3KhvCaR4ZYw= - - - Headers/TWSubstrateSigner.h - - hash2 - - mFI9OPp/xdemPbQ5fzfZIUGaScc/Kx/4BX1MVvJrP7s= - - Headers/TWTHORChainSwap.h hash2 @@ -819,91 +797,91 @@ hash2 - p84oTN5aoDqxqox0hsIhrAfCFtoU+ZHJnqyjR+ythlE= + 6QhkoT84HHWENrI5isTviebRgGTdMPyEn4LR0Jo1Dfg= Headers/WalletCore-Swift.h hash2 - wsTyh7kZtnxeU/V4JYxNkmCMIOXICX0iJVz6fZhKj9Y= + hyJyBAGMMC+zDtR7S/wK0PzbqjgztaLZEJxoM2R0ZzE= Headers/WalletCore.h hash2 - xu/7ElYUpx5cv1O0OdKDg8A/ec6ygvEtmI8n8gKjbao= + 91hDeD8noYqjwygzIROUK9wH/3qwBYW+ih9E/2gfOTY= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.abi.json hash2 - Live+t7sxej6yz7vghZCCYsGsI/T1mY4bPHDQoidzEk= + wKJ2s711s949Gz3bZ24Olscbfp7WNmNFcmNjAqEQSo4= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - vf2qRi7ShCtl4YGi3b74IbboCqc/gfg0x9arA5AlHdY= + nUFfsIZCzSRu8LIiyVpNOtlOyCTviVTdgjtaLjFOBSw= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - p/MC+R+HUO0UD72QKQEGgg4QSg/tLGAH5cG3bc0IfiE= + klzumgNfOWzei4iXU6bvgNbQ3NueKia6jOniVmuNaLQ= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - vf2qRi7ShCtl4YGi3b74IbboCqc/gfg0x9arA5AlHdY= + nUFfsIZCzSRu8LIiyVpNOtlOyCTviVTdgjtaLjFOBSw= Modules/WalletCore.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - sffctcTw7DLufy6dmD6Ecy/mCS6xWiiXPByC2vuhSnM= + ZactgZ4mKdSyzk0MXk2LnHIT3Ar31fdgl6YnpfuDntw= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - Live+t7sxej6yz7vghZCCYsGsI/T1mY4bPHDQoidzEk= + wKJ2s711s949Gz3bZ24Olscbfp7WNmNFcmNjAqEQSo4= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - XN/P2NMynvtkq5PFNrobMP1YuTwZxobAjRUO5TeZzDc= + FxPi2lmdOIde+e/2CrTyd3cSANwm0WMG8trCOkiBKyA= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - xsNN1yc7C5pvc3OkGfSN5SMHn4QzYCcOLYfoCpW/JqQ= + dR596Mak9K8L5y1VzeM6ttYdCy5SmZ1HwlDkmo2jZSA= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - XN/P2NMynvtkq5PFNrobMP1YuTwZxobAjRUO5TeZzDc= + FxPi2lmdOIde+e/2CrTyd3cSANwm0WMG8trCOkiBKyA= Modules/WalletCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - VfiHIXIp8lsPkFHvXkLV2tLVUXKshTOjt7mSgFFAbrE= + IBjU1UIUE0kLnh03g7Epf75J006GmAw3hBI4GGWS57k= Modules/module.modulemap